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)))