In Mathematica, the % function yields the value on the previous line. Is there a corresponding function in Clojure (Leiningen REPL)?
%norOut[n]is a global object that is assigned to be the value produced on the n^(th) output line.
%gives the last result generated.
%%gives the result before last. %%...% (k times) gives the k^(th) previous result.