clojure-koans/README.md

34 lines
577 B
Markdown
Raw Normal View History

2010-01-15 01:13:17 +00:00
# Functional Koans
2010-01-15 01:13:17 +00:00
### Getting Started
The only things you need to run the Clojure Koans are:
- JRE 1.5 or higher
2010-10-29 15:07:11 +00:00
- clojure-1.3.0-alpha1.jar
2010-10-29 15:07:11 +00:00
clojure-1.3.0-alpha1.jar needs to be placed in a directory `lib` under this
project.
2010-10-29 15:07:11 +00:00
You can use Leiningen (http://github.com/technomancy/leiningen) to
automatically install the Clojure jar in the right place.
After you have leiningen installed, run
2010-01-15 01:13:17 +00:00
`lein deps`
which will download all dependencies you need to run the clojure koans.
2010-01-15 01:13:17 +00:00
### Running The Koans
To run the koans, simply run
2010-10-29 15:07:11 +00:00
`run.sh`
or, on Windows,
`run.bat`
2010-10-29 15:07:11 +00:00