Previous expression in clojure repl

clojure, read-eval-print-loop

Solution

*1

Should do it! Similarly, you have access to `*2` and `*3` as well.

Problem

In the python repl, getting the result of the previously input expression is easy: ``` >>> 1+2 3 >>> _ 3 >>> ``` Is there a way to do this in the clojure repl?

Original source