practicalli / clojure

Practicalli Clojure REPL Driven Development
https://practical.li/clojure/
Creative Commons Attribution Share Alike 4.0 International
89 stars 36 forks source link

create a repl with Clojure code #459

Open practicalli-johnny opened 11 months ago

practicalli-johnny commented 11 months ago

Write a REPL within the REPL

(defn repl-repl
  "Repl within a REPL"
  (loop []
    (print (eval (read)))
    (recur)))