Context
Quoting the ClojureScript documentation:
When working with ClojureScript, having a good workflow is essential. The first thing to know about workflow is that you should be working from the REPL as much as possible. In fact, if you are not spending most of your time in the REPL, you're doing it wrong.
Now, in most of my Clojure development -- I work in my editor -- and hot-reload my code in the REPL.
Question:
(1) Does anyone have a good setup for coding Clojure in the repl rather than in an editor? What are the advantages?
(2) What is different a about Clojure vs ClojureScript that makes ClojureScript good for woking directly in the repl?
Thanks!