Skip to content

Instantly share code, notes, and snippets.

@gustiando
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save gustiando/e971f1a365c4c6fba08d to your computer and use it in GitHub Desktop.

Select an option

Save gustiando/e971f1a365c4c6fba08d to your computer and use it in GitHub Desktop.
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)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment