Skip to content

Commit

Permalink
Added Clojure code kata
Browse files Browse the repository at this point in the history
Resolves: #1
  • Loading branch information
James Little committed Sep 29, 2018
1 parent 0fcbbad commit 1fb0ab2
Show file tree
Hide file tree
Showing 7 changed files with 868 additions and 0 deletions.
11 changes: 11 additions & 0 deletions clojure/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
17 changes: 17 additions & 0 deletions clojure/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Code Kata clojure!

Clojure is a LISP style functional language for the JVM, it can be transpiled to JavaScript, or compiled for the CLR. But
more commonly it is intended for the JVM.

This clojure project initialised using lein. To run this project:
* Add the clojure plugin to intellij IDEA. Intellij will then be able to download the other required jars.
* make `lein` executable.
* run `./lein` or `lein.bat` this will set up the project locally.

# Run tests

Tests do not run as expected in IntelliJ. Instead use `lein test`.

It is also possible to test a single test, helpfully `lein` provides this command on test execution failure, allowing
any particular test to be re-run from the command line.

Loading

0 comments on commit 1fb0ab2

Please sign in to comment.