I would like to learn Clojure, but instead of opening a fully functional IDE every time I would like to have a batch file (or similar) that opens up a decent REPL to quickly crack examples, (i.e. I'm not looking for a discussion of Emacs / Netbeans / Eclipse IDE).
For example, this launches the most basic REPL:
cd C:\Program Files\Java\clojure-1.2.0\ java -cp clojure.jar clojure.main
and if you add the jline and clojure -contrib jar files to the clojure directory then
cd C:\Program Files\Java\clojure-1.2.0\ java -cp .;jline-0_9_5.jar;clojure.jar;clojure.contrib.jar jline.ConsoleRunner clojure.main
source share