Clojure

Print Print
Reading time 22:29

Clojure
Clojure logo.svg
Paradigmmulti-paradigm:
FamilyLisp
Designed byRich Hickey
First appeared2007; 14 years ago (2007)
Stable release
1.10.3[8] / 4 March 2021; 3 months ago (2021-03-04)
Typing discipline
Platform
LicenseEclipse Public License
Filename extensions
  • .clj
  • .cljs
  • .cljc
  • .edn
Websiteclojure.org
Influenced by
Influenced

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

Clojure advocates immutability and immutable data structures and encourages programmers to be explicit about managing identity and its states.[22] This focus on programming with immutable values and explicit progression-of-time constructs is intended to facilitate developing more robust, especially concurrent, programs that are simple and fast.[23][24][15] While its type system is entirely dynamic, recent efforts have also sought the implementation of gradual typing.[25]

Commercial support for Clojure is provided by Cognitect.[26] Clojure conferences are organized every year across the globe, the most famous of them being Clojure/conj.[27]

History and development process

Rich Hickey, creator of Clojure

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

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[20] and is managed at the Clojure JIRA project page.[32] General development discussion occurs at the Clojure Google Group.[33] Anyone can submit issues and ideas at ask.clojure.org,[34] but to contribute patches, one must sign the Clojure Contributor agreement.[35] JIRA issues are processed by a team of screeners and finally Rich Hickey approves the changes.[36]

Clojure's name, according to Hickey, is a word play on the programming concept "closure" incorporating the letters C, L, and J for C#, Lisp, and Java respectively—three languages which had a major influence on Clojure's design.[16]

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.[23][24][37][15]

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

Language overview

Version Release date Major features/improvements
October 16, 2007 (2007-10-16)[38] Initial public release
1.0 May 4, 2009 (2009-05-04)[39] First stable release
1.1 December 31, 2009 (2009-12-31)[40] Futures
1.2 August 19, 2010 (2010-08-19)[41] Protocols
1.3 September 23, 2011 (2011-09-23)[42] Enhanced primitive support
1.4 April 15, 2012 (2012-04-15)[43] Reader literals
1.5 March 1, 2013 (2013-03-01)[44] Reducers
1.5.1 March 10, 2013 (2013-03-10)[45] Fixing a memory leak
1.6 March 25, 2014 (2014-03-25)[46] Java API, improved hashing algorithms
1.7 June 30, 2015 (2015-06-30)[47] Transducers, reader conditionals
1.8 January 19, 2016 (2016-01-19)[48] Additional string functions, direct linking, socket server
1.9 December 8, 2017 (2017-12-08)[49] Integration with spec, command-line tools
1.10 December 17, 2018 (2018-12-17)[50] Improved error reporting, Java compatibility
1.10.1 June 6, 2019 (2019-06-06)[51] Working around a Java performance regression and improving error reporting from clojure.main
1.10.2 January 26, 2021 (2021-01-26)[52] Java interoperability/compatibility improvements and other important language fixes
Current stable version: 1.10.3 March 4, 2021 (2021-03-04)[8] prepl support for reader conditionals
Legend:
Old version
Older version, still maintained
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,[53][15] and Clojure code can be called from Java, too.[54] The community uses Leiningen for project automation, providing support for Maven integration. Leiningen handles project package management and dependencies and is configured using Clojure syntax.[55]

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

As a Lisp dialect, Clojure supports functions as first-class objects, a read–eval–print loop (REPL), and a macro system.[6] Clojure's Lisp macro system is very similar to that of 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.[57] Clojure supports multimethods[58] and for interface-like abstractions has a protocol[59] based polymorphism and data type system using records,[60] 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;[61][62][63] it is possible to do so explicitly by using the recur keyword.[64] For parallel and concurrent programming Clojure provides software transactional memory,[65] a reactive agent system,[1] and channel-based concurrent programming.[66]

Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure and ClojureScript code in the same namespace.[47][56] 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]

Alternate platforms

The primary platform of Clojure is Java,[18][53] but other target implementations exist. The most notable of these is 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] re-frame,[77] Rum,[78] and Om.[79][80]

Other Implementations

Other implementations of Clojure on different platforms include:

  • CljPerl,[81] Clojure atop Perl
  • Clojerl,[82] Clojure on BEAM, the Erlang virtual machine
  • clojure-py,[83] Clojure in pure Python
  • Ferret,[84] compiles to self-contained C++11 that can run on microcontrollers
  • Joker,[85] an interpreter and linter written in Go
  • Las3r,[86] a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
  • Pixie,[87] Clojure-inspired Lisp dialect written in RPython
  • Rouge,[88] 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,[89][90][91] Eric Evans,[92][93]James Gosling,[94]Paul Graham,[95] and Robert C. Martin.[96][97][98][99]ThoughtWorks, while assessing functional programming languages for their Technology Radar,[100] described Clojure as "a simple, elegant implementation of Lisp on the JVM" in 2010 and promoted its status to "ADOPT" in 2012.[101]

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".[102] Clojure is used in industry by firms[103] such as Apple,[104][105]Atlassian,[106]Funding Circle,[107]Netflix,[108]Puppet,[109] and Walmart[110] as well as government agencies such as NASA.[111] It has also been used for creative computing, including visual art, music, games, and poetry.[112]

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

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

Features by example

The following examples can be run in a Clojure REPL such as one started with the Clojure CLI tools[125] or an online REPL such as one available on REPL.it.[127]

Simplicity

Because of the strong emphasis on simplicity, typical Clojure programs 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 the iconic features of Clojure is interactive programming at the REPL.[128] 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 [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 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))
;; => {"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. ^ a b "Agents and Asynchronous Actions". Clojure.org. Retrieved 2019-07-07.
  2. ^ "Concurrent Programming". Clojure.org. Retrieved 2019-07-07.
  3. ^ Hickey, Rich; contributors. "core.async". GitHub.com. Retrieved 2019-07-07.
  4. ^ "Functional Programming". Clojure.org. Retrieved 2019-07-07.
  5. ^ Nolen, David; Hickey, Rich; contributors. "core.logic". GitHub.com. Retrieved 2019-07-07.
  6. ^ a b "Macros". Clojure.org. Retrieved 2019-07-07.
  7. ^ Esterhazy, Paulus. "Threading Macros Guide". Clojure.org. Retrieved 2019-07-07.
  8. ^ a b Miller, Alex (2021-03-04). "Clojure 1.10.3 release". Clojure.org.
  9. ^ Fogus, Michael (2011). "Rich Hickey Q&A". CodeQuarterly.com. Archived from the original on 2017-01-11.
  10. ^ Hickey, Rich. "Clojure Bookshelf". Amazon.com. Archived from the original on 2017-10-03. Retrieved 2019-07-07.
  11. ^ Bonnaire-Sergeant, Ambrose (2012). A Practical Optional Type System for Clojure (Thesis). The University of Western Australia.
  12. ^ "Clojure Programming" (PDF). OReilly.com. Retrieved 2013-04-30.
  13. ^ Baldridge, Timothy. "Pixie". PixieLang.org. Retrieved 2019-07-07.
  14. ^ Ramachandra, Ramkumar. "Rhine". GitHub.org. Retrieved 2019-07-07.
  15. ^ a b c d e Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26.
  16. ^ a b Hickey, Rich (2009-01-05). "meaning and pronunciation of Clojure". Google.com.
  17. ^ a b Krill, Paul (2012-03-22). "Clojure inventor Hickey now aims for Android". InfoWorld.com.
  18. ^ a b "Clojure". Clojure.org. Retrieved 2019-07-07.
  19. ^ a b "Differences with other Lisps". Clojure.org. Retrieved 2019-07-07.
  20. ^ a b "Development". Clojure.org. Retrieved 2019-07-07.
  21. ^ Hickey, Rich (2018-11-26). "Open Source is Not About You". GitHub.com.
  22. ^ a b c "Values and Change: Clojure's approach to Identity and State". Clojure.org. Retrieved 2019-07-07.
  23. ^ a b Hickey, Rich. "Rationale". Clojure.org. Retrieved 2019-07-07.
  24. ^ a b Torre, Charles (2009-10-06). "Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure". MSDN.com.
  25. ^ "core.typed". GitHub.com. Retrieved 2019-07-07.
  26. ^ "Investing in A Better Way". Cognitect.com. Retrieved 2019-07-07.
  27. ^ "Clojure/conj". Clojure-Conj.org. Retrieved 2019-07-07.
  28. ^ Hickey, Rich (2002-10-16). "[ANN] dotLisp – a Lisp dialect for .Net". Google.com.
  29. ^ Hickey, Rich (2013-04-15). "jfli". SourceForge.net.
  30. ^ Hickey, Rich (2013-04-03). "foil - Foreign Object Interface for Lisp". SourceForge.net.
  31. ^ Hickey, Rich (2013-03-07). "Lisplets". SourceForge.net.
  32. ^ "Clojure". Atlassian.net. Retrieved 2019-07-07.
  33. ^ "Clojure". Google.com. Retrieved 2019-07-07.
  34. ^ "Clojure Forum". clojure.org. Retrieved 2020-03-20.
  35. ^ "Contributor Agreement". Clojure.org. Retrieved 2019-07-07.
  36. ^ "Workflow". Clojure.org. Retrieved 2019-07-07.
  37. ^ Elmendorf, Dirk (2010-04-01). "Economy Size Geek – Interview with Rich Hickey, Creator of Clojure". LinuxJournal.com.
  38. ^ Hickey, Rich (2007-10-16). "Clojure is Two!". BlogSpot.com.
  39. ^ Hickey, Rich (2009-05-04). "Clojure 1.0". BlogSpot.com.
  40. ^ Hickey, Rich (2009-12-31). "Clojure 1.1 Release". BlogSpot.com.
  41. ^ Hickey, Rich (2010-08-19). "Clojure 1.2 Release". Google.com.
  42. ^ Redinger, Christopher (2011-09-23). "[ANN] Clojure 1.3 Released". Google.com.
  43. ^ Dipert, Alan (2012-04-17). "[ANN] Clojure 1.4 Released". Google.com.
  44. ^ Halloway, Stuart (2013-03-01). "ANN: Clojure 1.5". Google.com.
  45. ^ Halloway, Stuart (2013-03-10). "Clojure 1.5.1". Google.com.
  46. ^ Miller, Alex (2014-03-25). "[ANN] Clojure 1.6". Google.com.
  47. ^ a b Miller, Alex (2015-06-30). "Clojure 1.7 is now available". Clojure.org.
  48. ^ Miller, Alex (2016-01-19). "Clojure 1.8 is now available". Clojure.org.
  49. ^ Miller, Alex (2017-12-08). "Clojure 1.9 is now available". Clojure.org.
  50. ^ Miller, Alex (2018-12-17). "Clojure 1.10 release". Clojure.org.
  51. ^ Miller, Alex (2019-06-06). "Clojure 1.10.1 release". Clojure.org.
  52. ^ Miller, Alex (2021-01-26). "Clojure 1.10.2 release". Clojure.org.
  53. ^ a b "Hosted on the JVM". Clojure.org. Retrieved 2019-07-07.
  54. ^ "Java Interop". Clojure.org. Retrieved 2019-07-07.
  55. ^ Hagelberg, Phil; contributors. "Leiningen". Leiningen.org. Retrieved 2019-07-07.
  56. ^ a b c "The Reader". Clojure.org. Retrieved 2019-07-07.
  57. ^ Hickey, Rich. "edn". GitHub.com. Retrieved 2019-07-07.
  58. ^ "Multimethods and Hierarchies". Clojure.org. Retrieved 2019-07-07.
  59. ^ "Protocols". Clojure.org. Retrieved 2019-07-07.
  60. ^ "Datatypes: deftype, defrecord and reify". Clojure.org. Retrieved 2019-07-07.
  61. ^ Goetz, Brian (2014-11-20). "Stewardship: the Sobering Parts". YouTube.com.
  62. ^ Rose, John (2007-07-12). "tail calls in the VM". Oracle.com.
  63. ^ Rose, John (2009-02-11). "Some languages need to be able to perform tail calls". Java.net.
  64. ^ "Special Forms". Clojure.org. Retrieved 2019-07-07.
  65. ^ "Refs and Transactions". Clojure.org. Retrieved 2019-07-07.
  66. ^ Hickey, Rich (2013-06-28). "Clojure core.async Channels". Clojure.org.
  67. ^ Hickey, Rich (2014-09-17). "Transducers". YouTube.com.
  68. ^ Hickey, Rich (2014-08-06). "Transducers are Coming". Cognitect.com.
  69. ^ Hickey, Rich (2014-11-20). "Inside Transducers". YouTube.com.
  70. ^ "ClojureScript". ClojureScript.org. Retrieved 2019-07-06.
  71. ^ "ClojureScript – FAQ (for JavaScript developers)". ClojureScript.org. Retrieved 2018-02-04.
  72. ^ "ClojureCLR". GitHub.com. Retrieved 2012-06-28.
  73. ^ Emerick, Chas (2013-11-18). "Results of the 2013 State of Clojure & ClojureScript survey". CEmerick.com.
  74. ^ "State of Clojure 2014 Survey Results". WuFoo.com. Retrieved 2015-09-17.
  75. ^ Gehtland, Justin (2016-01-28). "State of Clojure 2015 Survey Results". Cognitect.com.
  76. ^ "Reagent". GitHub.io. Retrieved 2019-07-06.
  77. ^ "re-frame". GitHub.com. Retrieved 2019-07-06.
  78. ^ Prokopov, Nikita. "Rum". GitHub.com. Retrieved 2019-07-06.
  79. ^ Nolen, David. "Om". GitHub.com. Retrieved 2019-07-06.
  80. ^ Coupland, Tom (2014-01-17). "Om: Enhancing Facebook's React with Immutability". InfoQ.com.
  81. ^ Hu, Wei. "A Lisp on Perl". MetaCPAN.org. Retrieved 2019-07-06.
  82. ^ Facorro, Juan. "Clojerl". GitHub.com. Retrieved 2019-07-06.
  83. ^ Baldridge, Timothy. "clojure-py". GitHub.com. Retrieved 2019-07-06.
  84. ^ Akkaya, Nurullah. "Ferret". Ferret-Lang.org. Retrieved 2019-07-06.
  85. ^ Bataev, Roman. "Joker". Joker-Lang.org. Retrieved 2019-07-06.
  86. ^ Cannon, Aemon. "Laz3r". GitHub.com. Retrieved 2019-07-06.
  87. ^ Baldridge, Timothy. "Pixie". PixieLang.org. Retrieved 2019-07-06.
  88. ^ Connor, Ashe. "Rouge". GitHub.com. Retrieved 2019-07-06.
  89. ^ Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 1 of 3)". Twitch.tv.
  90. ^ Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 2 of 3)". Twitch.tv.
  91. ^ Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 3 of 3)". Twitch.tv.
  92. ^ Evans, Eric (2018-08-14). "Modelling Time - Eric Evans - Domain-Driven Design Europe 2018". YouTube.com.
  93. ^ Evans, Eric (2014-11-21). "Eric Evans on Twitter". Twitter.com.
  94. ^ "James Gostling meetup with London Java Community". YouTube.com. 2016-10-11.
  95. ^ Graham, Paul (2016-05-06). "Paul Graham on Twitter". Twitter.com.
  96. ^ Martin, Robert (2019-08-22). "Why Clojure?". CleanCoder.com.
  97. ^ Martin, Robert (2018-11-29). "Unble Bob Martin on Twitter". Twitter.com.
  98. ^ Martin, Robert (2018-08-01). "Introduction To Functional Programming". CleanCoders.com.
  99. ^ Martin, Robert (2017-07-11). "Pragmatic Functional Programming". CleanCoder.com.
  100. ^ "Frequently Asked Questions - Technology Radar - ThoughtWorks". ThoughtWorks.com. Retrieved 2019-02-10.
  101. ^ "Clojure - Technology Radar - ThoughtWorks". ThoughtWorks.com. Retrieved 2019-02-10.
  102. ^ Maple, Simon; Binstock, Andrew (2018-10-17). "JVM Ecosystem Report 2018". Snyk.io.
  103. ^ "Success Stories". Clojure.org. Retrieved 2018-10-27.
  104. ^ Liutikov, Roman (2017-12-17). "Roman Liutikov on Twitter". Twitter.com.
  105. ^ "Jobs at Apple". Apple.com. Retrieved 2019-07-06.
  106. ^ Borges, Leonardo (2015-07-07). "Realtime Collaboration with Clojure". YouTube.com.
  107. ^ Pither, Jon (2016-10-04). "Clojure in London: Funding Circle – Lending some Clojure". JUXT.pro.
  108. ^ Williams, Alex (2014-08-03). "The New Stack Makers: Adrian Cockcroft on Sun, Netflix, Clojure, Go, Docker and More". TheNewStack.io.
  109. ^ Price, Chris (2014-04-11). "A New Era of Application Services at Puppet Labs". Puppet.com. Retrieved 2020-08-06.
  110. ^ Phillips, Marc (2015-07-14). "Walmart Runs Clojure at Scale". Cognitect.com.
  111. ^ "Common-Metadata-Repository". GitHub.com. Retrieved 2019-07-06.
  112. ^ Meier, Carin (2015-05-06). "Creative computing with Clojure". OReilly.com.
  113. ^ Miller, Alex (2019-02-04). ""State of Clojure 2019" Results". Clojure.org.
  114. ^ Szabo, Maurício. "Chlorine: Socket REPL Client for Clojure and ClojureScript". Atom.io. Retrieved 2019-07-05.
  115. ^ Batsov, Bozhidar; contributors. "CIDER: The Clojure Interactive Development Environment that Rocks". CIDER.mx. Retrieved 2019-07-05.
  116. ^ Shrago, Greg. "Clojure-Kit: Clojure and ClojureScript plugin for IntelliJ-based tools". JetBrains.com. Retrieved 2019-07-05.
  117. ^ Fleming, Colin. "Cursive: Provides full Clojure and ClojureScript language support". JetBrains.com. Retrieved 2019-07-05.
  118. ^ Pope, Tim. "fireplace.vim: Clojure REPL Support". VIM.org. Retrieved 2019-07-05.
  119. ^ Monroe, Dominic (2016-12-13). "Clojure and Vim: An overview – It's very possible". JUXT.pro.
  120. ^ Masashi, Iizuka. "vim-iced: Clojure Interactive Development Environment for Vim8/Neovim". GitHub.com. Retrieved 2020-03-13.
  121. ^ Caldwell, Oliver. "Neovim Clojure(Script) tooling over prepl". GitHub.com. Retrieved 2019-11-09.
  122. ^ Caldwell, Oliver (2019-11-06). "Getting started with Clojure, Neovim and Conjure in minutes". oli.me.uk.
  123. ^ Strömberg, Peter. "Calva: Clojure & ClojureScript Interactive Programming". VisualStudio.com. Retrieved 2019-07-05.
  124. ^ Szabo, Maurício. "Clover". VisualStudio.com. Retrieved 2021-01-28.
  125. ^ a b Miller, Alex. "Deps and CLI Guide". Clojure.org. Retrieved 2019-07-08.
  126. ^ Miller, Alex (2017-12-08). "Clojure 1.9". Cognitect.com.
  127. ^ "Online Clojure REPL". REPL.it. Retrieved 2019-07-08.
  128. ^ "Programming at the REPL: Introduction". Clojure.org. Retrieved 2018-12-04.

Further reading

External links

By: Wikipedia.org
Edited: 2021-06-18 09:28:59
Source: Wikipedia.org