Open practicalli-johnny opened 1 year ago
Write a REPL within the REPL
(defn repl-repl "Repl within a REPL" (loop [] (print (eval (read))) (recur)))
Write a REPL within the REPL