Table of contents
What is Clojure?
As defined at the Clojure homepage
Clojure is a dynamic programming language that targets the Java Virtual Machine. It is designed to be a general-purpose language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. Clojure is a compiled language - it compiles directly to JVM bytecode, yet remains completely dynamic. Every feature supported by Clojure is supported at runtime. Clojure provides easy access to the Java frameworks, with optional type hints and type inference, to ensure that calls to Java can avoid reflection.
Clojure is a dialect of Lisp, and shares with Lisp the code-as-data philosophy and a powerful macro system. Clojure is predominantly a functional programming language, and features a rich set of immutable, persistent data structures. When mutable state is needed, Clojure offers a software transactional memory system and reactive Agent system that ensure clean, correct, multithreaded designs.
Get Clojure from here
The rationale for Clojure
The six rules of Clojure FP
- Avoid direct recursion. The JVM cannot optimize recursive calls, and Clojure programs that recurse will blow their stack.
- Use recur when you are producing scalar values or small, fixed sequences. Clojure will optimize calls that use an explicit recur.
- When producing large or variable-sized sequences, always be lazy. (Do not recur.) Then, your callers can consume just the part of the sequence they actually need.
- Be careful not to realize more of a lazy sequence than you need.
- Know the sequence library. You can often write code without using recur or the lazy APIs at all.
- Subdivide. Divide even simple-seeming problems into smaller pieces, and you will often find solutions in the sequence library
that lead to more general, reusable code.

Comments