Reputation: 2220
I would like to learn Clojure, but rather than opening up a full-on IDE each time I'd like to be able to have a batch file (or similar) that opens up a decent REPL for quickly hacking examples. (i.e. I'm not looking for an Emacs/Netbeans/Eclipse IDE discussion).
For instance, this starts up 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
Upvotes: 5
Views: 4054
Reputation: 1320
Take a look at leiningen. From there, download the windows zip, put the lein
directory in your PATH and run:
lein repl
Enjoy!
Upvotes: 10
Reputation: 8344
For a stand alone repl with decent classpath management take a look at cljr:
https://github.com/liebke/cljr
This provides a cljr.bat script that works very nicely under windows and provides convenient management of what is on the classpath and the ability to downloand/install clojure packages.
Upvotes: 3