You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Colin Jones 9b65b6d0fc Eliminate .size in favor of count. 14 years ago
src Eliminate .size in favor of count. 14 years ago
.gitignore ignore classes 14 years ago
README.md Notes on contributing. 14 years ago
ideaboard.txt more ideas and upgraded to 1.2.0 14 years ago
project.clj Upgrade to Clojure 1.3.0-alpha1. 14 years ago
repl.bat Upgrade to Clojure 1.3.0-alpha1. 14 years ago
repl.sh Upgrade to Clojure 1.3.0-alpha1. 14 years ago
run.bat Upgrade to Clojure 1.3.0-alpha1. 14 years ago
run.sh Upgrade to Clojure 1.3.0-alpha1. 14 years ago
test.bat Upgrade to Clojure 1.3.0-alpha1. 14 years ago
test.sh Upgrade to Clojure 1.3.0-alpha1. 14 years ago

README.md

Clojure Koans

The Clojure Koans are a fun and easy way to get started with Clojure - no experience assumed or required. Just follow the instructions below to start making tests pass!

Getting Started

The only things you need to run the Clojure Koans are:

  • JRE 1.5 or higher
  • clojure-1.3.0-alpha1.jar

clojure-1.3.0-alpha1.jar needs to be placed in a directory lib under this project.

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

lein deps

which will download all dependencies you need to run the clojure koans.

Running The Koans

To run the koans, simply run

run.sh

or, on Windows,

run.bat

Contributing

Patches are encouraged! Make sure the answer sheet still passes (test.sh, or test.bat on Windows), and send a pull request.

The file ideaboard.txt has lots of good places to start

Contributors (in order of appearance)

  • Aaron Bedra
  • Colin Jones
  • Eric Lavigne
  • Nuno Marquez

Credits

These exercises were started by Aaron Bedra of Relevance, Inc. in early 2010, as a learning tool for newcomers to functional programming. Aaron's macro-fu makes these koans extremely simple and fun to use, and to improve upon, and Relevance's initiative

Using the koans metaphor as a tool for learning a programming language started with the Ruby Koans by EdgeCase.