History and development process
Design philosophy
Rich Hickey developed Clojure because he wanted a modernLanguage overview
Clojure runs on the Java platform and as a result, integrates with Java and fully supports calling Java code from Clojure, and Clojure code can be called from Java, too. The community uses tools like Leiningen for project automation, providing support for Maven integration. Leiningen handles project package management and dependencies and is configured using Clojure syntax. Like most other Lisps, Clojure's syntax is built on S-expressions that are first parsed into data structures by a reader before being compiled. Clojure's reader supports literal syntax for maps, sets and vectors in addition to lists, and these are compiled to the mentioned structures directly. Clojure is a Lisp-1 and is not intended to be code-compatible with other dialects of Lisp, since it uses its own set of data structures incompatible with other Lisps. As a Lisp dialect, Clojure supports functions as first-class objects, a read–eval–print loop (REPL), and a macro system. Clojure's Lisp macro system is very similar to that ofrecur
keyword. For parallel and concurrent programming Clojure provides software transactional memory, a reactive agent system, and channel-based concurrent programming.
Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure and ClojureScript code in the same namespace. Transducers were added as a method for composing transformations. Transducers enable higher-order functions such as map and Extensible Data Notation
Extensible Data Notation, or edn, is a subset of the Clojure language intended as a data transfer format. It can be used to serialize and deserialize Clojure data structures, and Clojure itself uses a superset of edn to represent programs. edn is used in a similar way totrue
, false
* strings: "foo bar"
* characters: \c
, \tab
* symbols: name
* keywords: :key
* integers: 123
* floating point numbers: 3.14
* lists: (a b 42)
* vectors: b 42/code>
* maps:
* sets: #
* nil: nil
(a null-like value)
In addition to those elements, it supports extensibility through the use of ''tags'', which consist of the character #
followed by a symbol. When encountering a tag, the reader passes the value of the next element to the corresponding handler, which returns a data value. For example, this could be a tagged element: #myapp/Person
, whose interpretation will depend on the appropriate handler of the reader.
This definition of extension elements in terms of the others avoids relying on either convention or context to convey elements not included in the base set.
Alternative platforms
The primary platform of Clojure is Java, but other target implementations exist. The most notable of these is ClojureScript, which compiles to ECMAScript 3, and ClojureCLR, a full port on the .NET platform, interoperable with its ecosystem. A survey of the Clojure community with 1,060 respondents conducted in 2013 found that 47% of respondents used both Clojure and ClojureScript when working with Clojure. In 2014 this number had increased to 55%, in 2015, based on 2,445 respondents, to 66%. Popular ClojureScript projects include implementations of the React library such as Reagent, re-frame, Rum, and Om.
Other Implementations
Other implementations of Clojure on different platforms include:
* Babashka, Native Clojure scripting language leveraging GraalVM native image an
Small Clojure Interpreter
* CljPerl, Clojure atop Perl
* ClojureCLR, Clojure on CLR, the .Net virtual machine.
* ClojureDart,
Extend Clojure's reach
to mobile & desktop apps b
porting Clojure to Dart and Flutter
* Clojerl, Clojure on BEAM, the Erlang virtual machine
* clojure-py, Clojure in pure Python
* ClojureRS, Clojure on Rust
* ClojureScript, Compiler fo
Clojure that targets JavaScript
It emit
JavaScript code compatible with the advanced compilation
mode of th
Google Closure optimizing compiler
* Ferret, compiles to self-contained C++11 that can run on microcontrollers
* jank, Clojure compatible language with gradual typing that is hosted in C++ on top of an LLVM-based JIT
* Joker, an interpreter and linter written in Go
* Las3r, a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
* Pixie, Clojure-inspired Lisp dialect written in RPython
* Rouge, Clojure atop YARV in Ruby
Popularity
With continued interest in functional programming, Clojure's adoption by software developers using the Java platform has continued to increase. The language has also been recommended by software developers such as Brian Goetz, Eric Evans, James Gosling, Paul Graham, and Robert C. Martin. ThoughtWorks, while assessing functional programming languages for their Technology Radar, described Clojure as "a simple, elegant implementation of Lisp on the JVM" in 2010 and promoted its status to "ADOPT" in 2012.
In the "JVM Ecosystem Report 2018" (which was claimed to be "the largest survey ever of Java developers"), that was prepared in collaboration by Snyk and Java Magazine, ranked Clojure as the 2nd most used programming language on the JVM for "main applications". Clojure is used in industry by firms such as Apple, Atlassian, Funding Circle, Netflix, Nubank
Nubank is a Brazilian neobank and the largest fintech bank in Latin America. Its headquarters are located in São Paulo, Brazil. The company also has engineering offices in Berlin, Germany, Buenos Aires, Argentina, and an office in Mexico ...
, Puppet
A puppet is an object, often resembling a human, animal or Legendary creature, mythical figure, that is animated or manipulated by a person called a puppeteer. The puppeteer uses movements of their hands, arms, or control devices such as rods ...
, and Walmart as well as government agencies such as NASA. It has also been used for creative computing, including visual art, music, games, and poetry.
Tools
Tooling for Clojure development has seen significant improvement over the years. The following is a list of some popular IDEs and text editors with plug-ins that add support for programming in Clojure:
* Atom, with Chlorine
* Emacs
Emacs , originally named EMACS (an acronym for "Editor MACroS"), is a family of text editors that are characterized by their extensibility. The manual for the most widely used variant, GNU Emacs, describes it as "the extensible, customizable, s ...
, with CIDER
* IntelliJ IDEA, with Clojure-Kit or Cursive (a free license is available for non-commercial use)
* Light Table
* Vim
Vim means enthusiasm and vigor. It may also refer to:
* Vim (cleaning product)
* Vim Comedy Company, a movie studio
* Vim Records
* Vimentin, a protein
* "Vim", a song by Machine Head on the album ''Through the Ashes of Empires''
* Vim (text ed ...
, with fireplace.vim, vim-iced, or Conjure (Neovim only)
* Visual Studio Code, with Calva or Clover
In addition to the tools provided by the community, the official Clojure CLI tools have also become available on Linux, macOS, and Windows since Clojure 1.9.
Features by example
The following examples can be run in a Clojure REPL such as one started with the Clojure CLI tools or an online REPL such as one available on REPL.it.
Simplicity
Because of its strong emphasis on simplicity, Clojure programs typically consist of mostly functions and simple data structures (i.e., lists, vectors, maps, and sets):
;; A typical entry point of a Clojure program:
;; `-main` function
(defn -main ; name
args; (variable) parameters
(println "Hello, World!")) ; body
Programming at the REPL
Like other Lisps, one of Clojure's iconic features is interactive programming at the REPL. Note that, in the following examples, ;
starts a line comment and ;; =>
indicates the expected output:
; define a var
(def a 42)
;; => #'user/a
; call a function named `+`
(+ a 8)
;; => 50
; call a function named `even?`
(even? a)
;; => true
; define a function that returns the remainder of `n` when divided by 10
(defn foo (rem n 10))
;; => #'user/foo
; call the function
(foo a)
;; => 2
; print the docstring of `rem`
(doc rem)
;; =>
-------------------------
clojure.core/rem
( um div
remainder of dividing numerator by denominator.
; print the source of `rem`
(source rem)
;; =>
(defn rem
"remainder of dividing numerator by denominator."
um div (. clojure.lang.Numbers (remainder num div)))
Names at runtime
Unlike other runtime environments where names get compiled away, Clojure's runtime environment is easily introspectable using normal Clojure data structures:
; define a var
(def a 42)
;; => #'user/a
; get a map of all public vars interned in the `user` namespace
(ns-publics 'user)
;; =>
; reference the var via `#'` (reader macro) and
; its associated, namespace-qualified symbol `user/a`
#'user/a
;; => #'user/a
; de-reference (get the value of) the var
(deref #'user/a)
;; => 42
; define a function (with a docstring) that
; returns the remainder of `n` when divided by 10
(defn foo "returns `(rem n 10)`" (rem n 10))
;; => #'user/foo
; get the metadata of the var `#'user/foo`
(meta #'user/foo)
;; =>
Code as data (homoiconicity)
Similar to other Lisps, Clojure is homoiconic (also known as "code as data"). In the example below, we can see how to write code that modifies code itself:
; call a function (code)
(+ 1 1)
;; => 2
; quote the function call
; (turning code into data, which is a list of symbols)
(quote (+ 1 1))
;; => (+ 1 1)
; get the first element on the list
; (operating on code as data)
(first (quote (+ 1 1)))
;; => +
; get the last element on the list
; (operating on code as data)
(last (quote (+ 1 1)))
;; => 1
; get a new list by replacing the symbols on the original list
; (manipulating code as data)
(map (fn orm (case form
1 'one
+ 'plus))
(quote (+ 1 1)))
;; => (plus one one)
Expressive operators for data transformation
The threading macros (->
, ->>
, and friends) can syntactically express the abstraction of piping a collection of data through a series of transformations:
(->> (range 10)
(map inc)
(filter even?))
;; => (2 4 6 8 10)
This can also be achieved more efficiently using transducers:
(sequence (comp (map inc)
(filter even?))
(range 10))
;; => (2 4 6 8 10)
Thread-safe management of identity and state
A thread-safe generator of unique serial numbers (though, like many other Lisp dialects, Clojure has a built-in gensym
function that it uses internally):
(def i (atom 0))
(defn generate-unique-id
"Returns a distinct numeric ID for each call."
[]
(swap! i inc))
Macros
An anonymous subclass of java.io.Writer
that doesn't write to anything, and a macro using it to silence all prints within it:
(def bit-bucket-writer
(proxy ava.io.Writer[]
(write [buf] nil)
(close [] nil)
(flush [] nil)))
(defmacro noprint
"Evaluates the given `forms` with all printing to `*out*` silenced."
[& forms]
`(binding [*out* bit-bucket-writer]
~@forms))
(noprint
(println "Hello, nobody!"))
;; => nil
Language interoperability with Java
Clojure was created from the ground up to embrace its host platforms as one of its design goals and thus provides excellent language interoperability with Java:
; call an instance method
(.toUpperCase "apple")
;; => "APPLE"
; call a static method
(System/getProperty "java.vm.version")
;; => "12+33"
; create an instance of `java.util.HashMap` and
; add some entries
(doto (java.util.HashMap.)
(.put "apple" 1)
(.put "banana" 2))
;; =>
; create an instance of `java.util.ArrayList` and
; increment its elements with `clojure.core/map`
(def al (doto (java.util.ArrayList.)
(.add 1)
(.add 2)
(.add 3)))
(map inc al)
;; => (2 3 4)
; show a message dialog using Java Swing
(javax.swing.JOptionPane/showMessageDialog
nil
"Hello, World!")
;; => nil
Software transactional memory
10 threads manipulating one shared data structure, which consists of 100 vectors each one containing 10 (initially sequential) unique numbers. Each thread then repeatedly selects two random positions in two random vectors and swaps them. All changes to the vectors occur in transactions by making use of Clojure's software transactional memory system:
(defn run
vecs nitems nthreads niters (let > (* nvecs nitems)
(range)
(into [">ec-refs
(->> (* nvecs nitems)
(range)
(into [(comp (partition-all nitems)
(map vec)
(map ref))))
swap
#(let [v1 (rand-int nvecs)
v2 (rand-int nvecs)
i1 (rand-int nitems)
i2 (rand-int nitems)]
(dosync
(let [tmp (nth @(vec-refs v1) i1)]
(alter (vec-refs v1) assoc i1 (nth @(vec-refs v2) i2))
(alter (vec-refs v2) assoc i2 tmp))))
report
#(->> vec-refs
(into [] (comp (map deref)
(map (fn [v] (prn v) v))
cat
(distinct)))
(count)
(println "Distinct:"))]
(report)
(->> #(dotimes niters(swap))
(repeat nthreads)
(apply pcalls)
(dorun))
(report)))
(run 100 10 10 100000)
;; =>
1 2 3 4 5 6 7 8 9 0 11 12 13 14 15 16 17 18 19 ...
90 991 992 993 994 995 996 997 998 999Distinct: 1000
82 318 466 963 619 22 21 273 45 596 08 639 804 471 394 904 952 75 289 778 ...
84 216 622 139 651 592 379 228 242 355 84 may refer to:
* 84 (number)
* one of the years 84 BC, AD 84, 1984, AD 2084
* Eighty Four, Pennsylvania, an unincorporated census-designated place in Washington County, Pennsylvania, United States
* Seksendört, a Turkish pop group whose na ...
Distinct: 1000
nil
See also
* List of JVM languages
* List of CLI languages
CLI languages are computer programming languages that are used to produce libraries and programs that conform to the Common Language Infrastructure (CLI) specifications. With some notable exceptions, most CLI languages compile entirely to the Com ...
* Comparison of programming languages
References
Further reading
*
*
*
*
*
*
*
*
*
*
*
*
*
External links
*
{{Authority control
2007 software
Articles with example Clojure code
Cross-platform free software
Cross-platform software
Dynamic programming languages
Dynamically typed programming languages
Extensible syntax programming languages
Functional languages
High-level programming languages
JVM programming languages
Lisp (programming language)
Lisp programming language family
Multi-paradigm programming languages
Programming languages
Programming languages created in 2007
Scripting languages
Software using the Eclipse license
Source-to-source compilers