Book creator ( disable )
 Add this page to your book Show book (1 page) Suggest pages

Clojure

Clojure (/ˈklʒər/, like closure)[13] is a modern, dynamic, and functional dialect of the Lisp programming language on the Java platform.[14][15] Like other Lisps, Clojure treats code as data and has a Lisp macro system.[16] The current development process is community-driven,[17] overseen by Rich Hickey as its benevolent dictator for life (BDFL).[18]

Clojure advocates immutability and immutable data structures and encourages programmers to be explicit about managing identity and its states.[19] This focus on programming with immutable values and explicit progression-of-time constructs is intended to facilitate developing more robust programs, especially multithreaded ones.[20][21] While its type system is entirely dynamic, recent efforts have also sought the implementation of gradual typing.[22]

Commercial support for Clojure is provided by Cognitect.[23] Annual Clojure conferences are organised every year across the globe, the most famous of them being Clojure/conj (US east coast),[24] Clojure/West (US west coast),[25] and EuroClojure (Europe).[26]

History and development process

Rich Hickey, creator of Clojure

Rich Hickey is the creator of the Clojure language.[14] Before Clojure, he developed dotLisp, a similar project based on the .NET platform,[27] and three earlier attempts to provide interoperability between Lisp and Java: a Java foreign language interface for Common Lisp (jfli),[28] A Foreign Object Interface for Lisp (FOIL),[29] and a Lisp-friendly interface to Java Servlets (Lisplets).[30]

Hickey spent about 2½ years working on Clojure before releasing it publicly, much of that time working exclusively on Clojure with no outside funding. At the end of this time, Hickey sent an email announcing the language to some friends in the Common Lisp community.

The development process is community-driven[17] and is managed at the Clojure Community website.[31] The website contains planning documents and an issue tracker where bugs may be filed. General development discussion occurs at the Clojure Dev Google Group.[32] Anyone can submit bug reports and ideas, but to contribute patches, one must sign the Clojure Contributor agreement.[33] JIRA tickets are processed by a team of screeners and finally Rich Hickey approves the changes.[34]

Design philosophy

Rich Hickey developed Clojure because he wanted a modern Lisp for functional programming, symbiotic with the established Java platform, and designed for concurrency.[20][21][35]

Clojure's approach to state is characterized by the concept of identities,[36] which are represented as a series of immutable states over time. Since states are immutable values, any number of workers can operate on them in parallel, and concurrency becomes a question of managing changes from one state to another. For this purpose, Clojure provides several mutable reference types, each having well-defined semantics for the transition between states.[19][36]

Features

Version Release date Major features/improvements
October 16, 2007[37] Initial public release
1.0 May 4, 2009[38] First stable release[39]
1.1 December 31, 2009[38] Futures[40]
1.2 August 19, 2010[38] Protocols[41]
1.3 September 23, 2011[38] Enhanced primitive support[42]
1.4 April 15, 2012[38] Reader literals
1.5 March 1, 2013[38] Reducers
1.6 March 25, 2014[43] Java API, improved hashing algorithms
1.7 June 30, 2015[44] Transducers, reader conditionals
1.8 January 19, 2016[45] Additional string functions, direct linking, socket server
1.9 December 8, 2017[46] Integration with spec, command-line tools
1.10 December 17, 2018[47] Improved error reporting, Java compatibility
Current stable version: 1.10.1 June 6, 2019[48] Working around a Java performance regression and improving error reporting from clojure.main
Legend:
Old version
Older version, still supported
Latest version
Latest preview version
Future release

Clojure runs on the Java platform and as a result, integrates with Java and fully supports calling Java code from Clojure,[49] and Clojure code can be called from Java also.[50] The community uses Leiningen[51] for project automation, providing support for Maven integration. Leiningen handles project package management and dependencies and is configured using Clojure syntax.[51]

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.[52] Clojure's reader supports literal syntax for maps, sets and vectors in addition to lists, and these are compiled to the mentioned structures directly.[52] 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.[52][53]

As a Lisp dialect, Clojure supports functions as first-class objects, a read–eval–print loop (REPL), and a macro system.[54] Clojure's Lisp macro system is very similar to that in Common Lisp with the exception that Clojure's version of the backquote (termed "syntax quote") qualifies symbols with their namespace. This helps prevent unintended name capture, as binding to namespace-qualified names is forbidden. It is possible to force a capturing macro expansion, but it must be done explicitly. Clojure does not allow user-defined reader macros, but the reader supports a more constrained form of syntactic extension.[55] Clojure supports multimethods[56] and for interface-like abstractions has a protocol[57] based polymorphism and data type system using records,[58] providing high-performance and dynamic polymorphism designed to avoid the expression problem.

Clojure has support for lazy sequences and encourages the principle of immutability and persistent data structures. As a functional language, emphasis is placed on recursion and higher-order functions instead of side-effect-based looping. Automatic tail call optimization is not supported as the JVM does not support it natively;[59][60][61] it is possible to do so explicitly by using the recur keyword.[62] For parallel and concurrent programming Clojure provides software transactional memory,[63] a reactive agent system,[64] and channel-based concurrent programming.[65]

Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure and ClojureScript code in the same namespace.[44][66] Transducers were added as a method for composing transformations. Transducers enable higher-order functions such as map and fold to generalize over any source of input data. While traditionally these functions operate on sequences, transducers allow them to work on channels and let the user define their own models for transduction.[67][68][69]

Platforms

The primary platform of Clojure is Java,[15][49] but other target implementations exist. The most notable of these are ClojureScript,[70] which compiles to ECMAScript 3,[71] and ClojureCLR,[72] a full port on the .NET platform, interoperable with its ecosystem. A survey of the Clojure community with 1,060 respondents conducted in 2013[73] found that 47% of respondents used both Clojure and ClojureScript when working with Clojure. In 2014 this number had increased to 55%,[74] in 2015, based on 2,445 respondents, to 66%.[75] Popular ClojureScript projects include implementations of the React library such as Reagent[76] and Om.[77][78]

Popularity

With the continued interest in functional programming, Clojure's adoption by the software developers on the Java platform has kept increasing. The language has also been either preferred or recommended by renowned software development veterans such as James Gosling,[79] Paul Graham,[80] and Robert C. Martin (also known as “Uncle Bob”.)[81]

In the "JVM Ecsosystem Report 2018" (which was claimed to be "the largest survey ever of Java developers"), prepared in collaboration by Snyk and Java Magazine, Clojure was ranked the 2nd most used programming language (behind Java) for "main applications".[82]

Clojure is used in industry by firms[83] such as Apple,[84][85] Atlassian,[86] Funding Circle,[87] Netflix,[88] Puppet,[89] and Walmart[90] as well as government agencies such as NASA[91]. It has also been used for creative computing, including visual art, music, games, and poetry.[92]

ThoughtWorks, while assessing functional programming languages for their Technology Radar,[93] expressed their favor toward Clojure as "a simple, elegant implementation of Lisp on the JVM" in 2010 and promoted its status to "ADOPT" in 2012.[94]

A growing number of unofficial and experimental implementations for other platforms testify to the popularity of the language:

  • las3r,[95] a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
  • clojure-py,[96] Clojure in pure Python
  • rouge,[97] Clojure atop YARV in Ruby
  • CljPerl,[98] Clojure atop Perl
  • Pixie, Clojure-inspired Lisp dialect written in RPython
  • Ferret,[99] compiles to self-contained C++11 that can run on microcontrollers
  • Joker,[100] an interpreter and linter written in Go
  • clojerl,[101] Clojure on the Erlang VM

Tools

Tooling for Clojure development has seen significant improvement over the years. The following is a list of the most popular IDEs/editors with their plug-ins that combined provide excellent support for Clojure development:[102]

In addition to the tools provided by the community, the official CLI tools have also become available on GNU/Linux, macOS, and Windows since Clojure 1.9[108]

Examples

Hello, World! program

(println "Hello, World!")

Programming at REPL

Like other Lisps, one of the iconic features of Clojure is interactive programming at the REPL.[109] Note that, in the following examples, ";;" starts a line comment and ";; =>" indicates 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 [n] (rem n 10))
;; => #'user/foo

;; call the function
(foo a)
;; => 2

;; print the docstring of `rem`
(doc rem)
;; =>
-------------------------
clojure.core/rem
([num div])
 remainder of dividing numerator by denominator.

;; print the source of `rem`
(source rem)
;; =>
(defn rem
  "remainder of dividing numerator by denominator."
  {:added "1.0"
   :static true
   :inline (fn [x y] `(. clojure.lang.Numbers (remainder ~x ~y)))}
  [num 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)
;; => {a #'user/a}

;; 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)`" [n] (rem n 10))
;; => #'user/foo

;; get the metadata of the var `#'user/foo`
(meta #'user/foo)
;; =>
{:arglists ([n]),
 :doc "returns `(rem n 10)`",
 :line 1,
 :column 1,
 :file "user.clj",
 :name foo,
 :ns #namespace[user]}

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 easy it is 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 [form]
       (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 [java.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 ground up to embrace its host platforms as one of its design goals 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))
;; => {"banana" 2, "apple" 1}

;; 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
  [nvecs nitems nthreads niters]
  (let [vec-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)
;; =>
[0 1 2 3 4 5 6 7 8 9]
[10 11 12 13 14 15 16 17 18 19]
  ...
[990 991 992 993 994 995 996 997 998 999]
Distinct: 1000

[382 318 466 963 619 22 21 273 45 596]
[808 639 804 471 394 904 952 75 289 778]
  ...
[484 216 622 139 651 592 379 228 242 355]
Distinct: 1000
nil

See also

References

  1. ^ Agents and Asynchronous Actions
  2. ^ Concurrent Programming
  3. ^ core.async
  4. ^ Functional Programming
  5. ^ core.logic
  6. ^ Macros
  7. ^ Threading Macros Guide
  8. ^ "Clojure 1.10.1 release". clojure.org. 2019-06-06. Retrieved 2019-06-06.
  9. ^ Fogus, Michael. "Rich Hickey Q&A". CodeQuarterly.com. Retrieved 2017-01-11.
  10. ^ Hickey, Rich. "Clojure Bookshelf". Listmania!. Amazon.com. Retrieved 2017-10-03.
  11. ^ Bonnaire-Sergeant, Ambrose (2012). A Practical Optional Type System for Clojure (Thesis). The University of Western Australia.
  12. ^ "Clojure Programming" (PDF). Retrieved 2013-04-30.
  13. ^ Hickey, Rich. "meaning and pronunciation of Clojure". Google Groups. Retrieved 2012-04-20.
  14. ^ a b Krill, Paul. "Clojure inventor Hickey now aims for Android". www.infoworld.com. Retrieved 2018-11-08.
  15. ^ a b "Clojure – home". Clojure.org. Retrieved 2015-09-15.
  16. ^ "Clojure – Lisp". Clojure.org. Retrieved 2015-09-15.
  17. ^ a b "Contributing FAQ – Clojure Community – Clojure Development". dev.clojure.org. Retrieved 2015-09-15.
  18. ^ "Clojure – funding". Clojure.org. Retrieved 2015-09-15.
  19. ^ a b "Clojure – state". Clojure.org. Retrieved 2015-09-15.
  20. ^ a b Hickey, Rich. "Rationale". Clojure.org. Retrieved 2008-10-17.
  21. ^ a b Charles (2009-10-06). "Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure; Going Deep; Channel 9". Channel9.msdn.com. Retrieved 2012-06-28.
  22. ^ "clojure/core.typed". GitHub. Retrieved 2015-09-15.
  23. ^ "Clojure Programming Language: Cognitect, Clojure Consulting, Clojure Support, Functional Programming, JVM". Cognitect.com. Retrieved 2015-09-15.
  24. ^ Clojure/conj
  25. ^ Clojure/West
  26. ^ EuroClojure
  27. ^ "[ANN] dotLisp – a Lisp dialect for .Net". Google Groups.
  28. ^ "jfli, a Java foreign language interface for Common Lisp".
  29. ^ "Foil – a Foreign Object Interface for Lisp".
  30. ^ "Lisplets – a Lisp-friendly interface to Java Servlets".
  31. ^ Clojure Community website
  32. ^ Clojure Dev Google Group
  33. ^ "Contributing FAQ – Clojure Community – Clojure Development". dev.clojure.org. Retrieved 2015-09-16.
  34. ^ "JIRA workflow – Clojure Community – Clojure Development". dev.clojure.org. Retrieved 2015-09-16.
  35. ^ "Economy Size Geek – Interview with Rich Hickey, Creator of Clojure". Linux Journal. Retrieved 2015-09-15.
  36. ^ a b Hickey, Rich. "On State and Identity". Clojure.org. Retrieved 2010-03-01.
  37. ^ "Clojure: Clojure is Two!". Clojure Blog. Retrieved 2015-09-16.
  38. ^ a b c d e f Fingerhut, Andy. "Clojure version history". jafingerhut.github.io. Retrieved 2015-09-16.
  39. ^ "Clojure: Clojure 1.0". Clojure Blog. Retrieved 2015-09-16.
  40. ^ "Clojure: Clojure 1.1 Release". clojure.blogspot.com. Retrieved 2015-09-16.
  41. ^ "Clojure – protocols". Clojure.org. Retrieved 2015-09-16.
  42. ^ "Clojure/clojure". GitHub. Retrieved 2015-09-16.
  43. ^ "Google Groups". groups.google.com. Retrieved 2015-09-16.
  44. ^ a b "Clojure 1.9". Cognitect. Retrieved 2017-12-08.
  45. ^ "Google Groups". groups.google.com. Retrieved 2016-01-25.
  46. ^ "Google Groups". groups.google.com. Retrieved 2017-12-08.
  47. ^ "Clojure 1.10 release". clojure.org. Retrieved 2018-12-17.
  48. ^ "Clojure 1.10.1 release". clojure.org. Retrieved 2019-06-06.
  49. ^ a b "Clojure – jvm_hosted". Clojure.org. Retrieved 2015-09-15.
  50. ^ "Clojure – java_interop". Clojure.org. Retrieved 2015-09-15.
  51. ^ a b Hagelberg, Phil; contributors. "Leiningen". leiningen.org. Retrieved 2015-09-15.
  52. ^ a b c "Clojure – reader". Clojure.org. Retrieved 2015-09-15.
  53. ^ "Clojure – Lisps". Clojure.org. Retrieved 2015-09-15.
  54. ^ "Clojure – macros". Clojure.org. Retrieved 2015-09-15.
  55. ^ Hickey, Rich. "edn". GitHub. Retrieved 2014-05-24.
  56. ^ "Clojure – multimethods". Clojure.org. Retrieved 2015-09-15.
  57. ^ "Clojure – protocols". Clojure.org. Retrieved 2015-09-15.
  58. ^ "Clojure – datatypes". Clojure.org. Retrieved 2015-09-15.
  59. ^ Goetz, Brian. "Brian Goetz – Stewardship: the Sobering Parts". YouTube: ClojureTV. Retrieved 2015-09-15.
  60. ^ Rose, John. "tail calls in the VM". blogs.oracle.com. Retrieved 2018-11-03.
  61. ^ Rose, John. "Some languages need to be able to perform tail calls". JDK Bug System. Retrieved 2018-11-03.
  62. ^ "Clojure – special_forms". Clojure.org. Retrieved 2015-09-15.
  63. ^ "Clojure – Refs". Clojure.org. Retrieved 2015-09-15.
  64. ^ "Clojure – Agents". Clojure.org. Retrieved 2016-07-04.
  65. ^ "Clojure: Clojure core.async Channels". Clojure.com. Retrieved 2015-09-15.
  66. ^ "Clojure – reader". Clojure.org. Retrieved 2015-09-15.
  67. ^ "Transducers" by Rich Hickey. https://www.youtube.com/watch?v=6mTbuzafcII. Retrieved on 2015-09-15.
  68. ^ "Transducers are Coming". Retrieved 2015-09-15.
  69. ^ "Rich Hickey – Inside Transducers". YouTube: Cognitect Inc. 2014-11-20. Retrieved 2015-09-15.
  70. ^ "Clojure/Clojurescript". GitHub. Retrieved 2015-09-15.
  71. ^ "ClojureScript – FAQ (for JavaScript developers)". clojurescript.org. Retrieved 2018-02-04.
  72. ^ "clojure/clojure-clr". GitHub. Retrieved 2012-06-28.
  73. ^ Emerick, Chas. "Results of the 2013 State of Clojure & ClojureScript survey". Cemerick. Retrieved 2015-09-17.
  74. ^ "State of Clojure 2014 Survey Results". Cognitect Blog. Retrieved 2015-09-17.
  75. ^ "State of Clojure 2015 Survey Results". Cognitect Blog. Retrieved 2016-09-08.
  76. ^ "Reagent". GitHub.
  77. ^ "Om". GitHub.
  78. ^ "Om: Enhancing Facebook's React with Immutability". InfoQ. Retrieved 2015-09-17.
  79. ^ "James Gostling meetup with London Java Community". 2016-10-11. Retrieved 2019-02-10.
  80. ^ Graham, Paul (2016-05-06). "Paul Graham on Twitter". Retrieved 2019-02-10.
  81. ^ Martin, Robert (2018-11-29). "Unble Bob Martin on Twitter". Retrieved 2019-02-10.
  82. ^ Maple, Simon; Binstock, Andrew (2018-10-17). "JVM Ecosystem Report 2018 - Synk". Retrieved 2019-02-10.
  83. ^ "Clojure - Success Stories". Clojure.org. Retrieved 2018-10-27.
  84. ^ "Roman Liutikov at Twitter". Twitter. Retrieved 2018-10-27.
  85. ^ "Jobs at Apple". Apple Inc. Retrieved 2018-10-27.
  86. ^ Borges, Leonardo (2015-07-07). "Realtime Collaboration with Clojure". Retrieved 2019-02-10.
  87. ^ "JUXT Blog: Clojure in London: Funding Circle". juxt.pro. Retrieved 2017-02-01.
  88. ^ Williams, Alex (2014-08-03). "The New Stack Makers: Adrian Cockcroft on Sun, Netflix, Clojure, Go, Docker and More". Retrieved 2019-02-10.
  89. ^ "A New Era of Application Services at Puppet Labs". Puppet Labs. Retrieved 2015-09-15.
  90. ^ "Walmart Runs Clojure at Scale". Cognitect.com. Retrieved 2015-09-15.
  91. ^ "nasa/Common-Metadata-Repository". GitHub.
  92. ^ Meier, Carin. "Creative computing with Clojure". O'Reilly Radar. Retrieved 2015-09-17.
  93. ^ "Frequently Asked Questions - Technology Radar - ThoughtWorks". Retrieved 2019-02-10.
  94. ^ "Clojure - Technology Radar - ThoughtWorks". Retrieved 2019-02-10.
  95. ^ aemoncannon (2010-12-30). "Home: aemoncannon/las3r Wiki". GitHub. Retrieved 2012-06-28.
  96. ^ "drewr/clojure-py". GitHub. Retrieved 2017-01-10.
  97. ^ "rouge-lang/rouge". GitHub. Retrieved 2015-12-19.
  98. ^ "A Lisp on Perl". MetaCPAN. Retrieved 2014-05-25.
  99. ^ "Ferret". GitHub.
  100. ^ "Joker". GitHub.
  101. ^ "clojerl". GitHub.
  102. ^ Miller, Alex. ""State of Clojure 2018" Results". clojure.org. Retrieved 2018-12-09.
  103. ^ "CIDER: The Clojure Interactive Development Environment that Rocks".
  104. ^ "Clojure-Kit: Clojure and ClojureScript plugin for IntelliJ-based tools".
  105. ^ "Cursive: Provides full Clojure and ClojureScript language support".
  106. ^ "fireplace.vim: Clojure REPL Support".
  107. ^ "Calva: Clojure & ClojureScript Interactive Programming".
  108. ^ Clojure - Deps and CLI Guide
  109. ^ "Programming at the REPL: Introduction". clojure.org. Retrieved 2018-12-04.

Further reading

External links

Official website Edit this at Wikidata