gumatias
2/16/2015 - 5:57 PM

My nasty Clojure REPL

My nasty Clojure REPL

; Didn't looking on how to run it standalone, so it needs to run inside a REPL!
(defn repl []
  (let [result (eval (read-string (read-line)))]
    (println result)
    (recur)))