clojure
clojure copied to clipboard
create a repl with Clojure code
Write a guide showing how to create a REPL within the Clojure REPL.
This helps understanding of how the REPL process works in Clojure.
Basic Example
(defn repl-repl
"Repl within a REPL"
(loop []
(print (eval (read)))
(recur)))