Clojure

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
Clojure
Clojure logo.svg
Paradigmfunctional
Designed byRich Hickey
First appeared2007; 12 years ago (2007)
Stable release
1.10[1] / December 17, 2018; 56 days ago (2018-12-17)
Typing discipline
Platform
LicenseEclipse Public License
Filename extensions
  • .clj
  • .cljs
  • .cljc
  • .edn
Websiteclojure.org
Influenced by
Influenced

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

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

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

History and development process[edit]

Rich Hickey, creator of Clojure

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

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[10] and is managed at the Clojure Community website.[24] The website contains planning documents and an issue tracker where bugs may be filed. General development discussion occurs at the Clojure Dev Google Group.[25] Anyone can submit bug reports and ideas, but to contribute patches, one must sign the Clojure Contributor agreement.[26] JIRA tickets are processed by a team of screeners and finally Rich Hickey approves the changes.[27]

Design philosophy[edit]

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

Clojure's approach to state is characterized by the concept of identities,[29] 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.[12][29]

Features[edit]

Version Release date Major features/improvements
2007-10-16[30] Initial public release
1.0 2009-05-04[31] First stable release[32]
1.1 2009-12-31[31] Futures[33]
1.2 2010-08-19[31] Protocols[34]
1.3 2011-09-23[31] Enhanced primitive support[35]
1.4 2012-04-15[31] Reader literals
1.5 2013-03-01[31] Reducers
1.6 2014-03-25[36] Java API, improved hashing algorithms
1.7 2015-06-30[37] Transducers, reader conditionals
1.8 2016-01-19[38] Additional string functions, direct linking, socket server
1.9 2017-12-08[39] Integration with spec, command-line tools
Current stable version: 1.10 2018-12-17[40] Improved error reporting, Java compatibility
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,[41] and Clojure code can be called from Java also.[42] The community uses Leiningen[43] for project automation, providing support for Maven integration. Leiningen handles project package management and dependencies and is configured using Clojure syntax.[43]

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

As a Lisp dialect, Clojure supports functions as first-class objects, a read–eval–print loop (REPL), and a macro system.[46] 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.[47] Clojure supports multimethods[48] and for interface-like abstractions has a protocol[49] based polymorphism and data type system using records,[50] 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;[51][52][53] it is possible to do so explicitly by using the recur keyword.[54] For parallel and concurrent programming Clojure provides software transactional memory,[55] a reactive agent system,[56] and channel-based concurrent programming.[57]

Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure and ClojureScript code in the same namespace.[37][58] 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.[59][60][61]

Platforms[edit]

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

Popularity[edit]

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, including, but not limited to, James Gosling,[71] Paul Graham,[72] and Robert C. Martin.[73]

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 popular programming language used for "main applications".[74]

Clojure is used in industry by firms such as Funding Circle,[75] Walmart,[76] Puppet,[77] Apple,[78][79] Netflix,[80] Atlassian[81] and other large software firms.[82] It has also been used for creative computing, including visual art, music, games, and poetry.[83]

ThoughtWorks, while assessing functional programming languages for their Technology Radar,[84] 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.[85]

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

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

Examples[edit]

Hello, World! program[edit]

(println "Hello, World!")

Programming at REPL[edit]

Like other Lisps, one of the iconic features of Clojure is interactive programming at the REPL.[93] 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[edit]

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)[edit]

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[edit]

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 identity management[edit]

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[edit]

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[edit]

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")
;; => 11+28-201810022317

;; create an instance of `java.util.HashMap` and
;; add some entries
(doto (java.util.HashMap.)
  (.put "apple" 1)
  (.put "banana" 2))
;; => {apple=1, 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[edit]

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)
          (partition nitems)
          (map (comp ref vec))
          (vec))

        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
        #(let [derefed (map deref vec-refs)]
          (prn derefed)
          (println "Distinct:" (->> derefed
                                 (apply concat)
                                 (distinct)
                                 (count))))]
    (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

Tools[edit]

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:[94]

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

Getting the Official Clojure CLI Tools
Operating System Package Manager Commands
GNU/Linux (N/A)
$ curl -O https://download.clojure.org/install/linux-install-1.10.0.411.sh
$ chmod +x linux-install-1.10.0.411.sh
$ sudo ./linux-install-1.10.0.411.sh
macOS Homebrew
$ brew update
$ brew install clojure
Windows (N/A) (not available yet – see Leiningen[100] or Boot[101] instead)

See also[edit]

References[edit]

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

Further reading[edit]

External links[edit]

Official website Edit this at Wikidata