Clojure

Clojure Make Simple

Clojure Cheat Sheet:

Clojure Documentation & Examples: https://clojuredocs.org/quickref

Clojure Source: https://github.com/clojuredocs/guides

Clojure Community Documentation Grimoire : https://www.conj.io

Clojure on Android

Clojure-Toolbox

Learn Clojure for free: http://www.lispcast.com/ultimate-guide-to-learning-clojure-for-free?utm_source=Clojure+Gazette&utm_medium=email&utm_campaign=160

Learn Clojure with Tests : Install here Clojure Koans
(move to directory : ~/clojure-koans/src/koans/)
(Emacs to open first file: 01_equalities.clj )
(fill in the answer in blank space)
($lein koan run)

TDD (Test-Driven Development) Framework: http://speclj.com

Clojure Build Life-cycle:
1. Create dir/program.clj with EMACS
2. Build and run with Leningen in /dir:
$lein run
3. Alternatively share with Java user:
$lein testjar
4. Execute with Java:
Java -jar target/testjar/dir-0.0.1-SNAPSHOT-standalone.jar

image