If I want to demonstrate something, is it possible that I can run a command on cider and it prints after each line the result of evaluating that line ?
(def xx {:a "a" :b "b"})
(:a xx)
(:c xx [])
And, after running (something similar to):
(def xx {:a "a" :b "b"}) ; => #'ns-name.playground/xx
(:a xx) ; => "a"
(:c xx "nothing") ; => "nothing"