Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Clojure
Dialect of the Lisp programming language on the Java platform

Clojure is a dynamic and functional dialect of the programming language Lisp on the Java platform.

Like most other Lisps, Clojure's syntax is built on S-expressions that are first parsed into data structures by a Lisp reader before being compiled. Clojure's reader supports literal syntax for maps, sets, and vectors along with lists, and these are compiled to the mentioned structures directly. Clojure treats code as data and has a Lisp macro system. 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.

Clojure advocates immutability and immutable data structures and encourages programmers to be explicit about managing identity and its states. 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. While its type system is entirely dynamic, recent efforts have also sought the implementation of a dependent type system.

The language was created by Rich Hickey in the mid-2000s, originally for the Java platform; the language has since been ported to other platforms, such as the Common Language Runtime (.NET). Hickey continues to lead development of the language as its benevolent dictator for life.

Related Image Collections Add Image
We don't have any YouTube videos related to Clojure yet.
We don't have any PDF documents related to Clojure yet.
We don't have any Books related to Clojure yet.
We don't have any archived web articles related to Clojure yet.

History

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

Hickey spent about two and a half years working on Clojure before releasing it publicly in October 2007,20 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.

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.21

Design

Rich Hickey developed Clojure because he wanted a modern Lisp for functional programming, symbiotic with the established Java platform, and designed for concurrency.22232425 He has also stressed the importance of simplicity in programming language design and software architecture, advocating for loose coupling, polymorphism via protocols and type classes instead of inheritance, stateless functions that are namespaced instead of methods or replacing syntax with data.262728

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.30

Clojure runs on the Java platform and as a result, integrates with Java and fully supports calling Java code from Clojure,3132 and Clojure code can be called from Java, too.33 The community uses tools such as Clojure command-line interface (CLI)34 or Leiningen for project automation, providing support for Maven integration. These tools handle project package management and dependencies and are configured using Clojure syntax.

As a Lisp dialect, Clojure supports functions as first-class objects, a read–eval–print loop (REPL), and a macro system.35 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.36 Clojure supports multimethods37 and for interface-like abstractions has a protocol38 based polymorphism and data type system using records,39 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;404142 it is possible to do so explicitly by using the recur keyword.43 For parallel and concurrent programming Clojure provides software transactional memory,44 a reactive agent system,45 and channel-based concurrent programming.46

Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure, ClojureScript and ClojureCLR code in the same namespace.4748 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.495051

Extensible Data Notation

Extensible Data Notation, or edn,52 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 to JSON or XML, but has a relatively large list of built-in elements, shown here with examples:

  • booleans: true, false
  • strings: "foo bar"
  • characters: \c, \tab
  • symbols: name
  • keywords: :key
  • integers: 123
  • floating point numbers: 3.14
  • lists: (a b 42)
  • vectors: [a b 42]
  • maps: {:a 1, "foo" :bar, [1 2 3] four}
  • sets: #{a b [1 2 3]}
  • 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 {:first "Fred" :last "Mertz"}, 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,5354 but other target implementations exist. The most notable of these is ClojureScript,55 which compiles to ECMAScript 3,56 and ClojureCLR,57 a full port on the .NET platform, interoperable with its ecosystem.

Other implementations of Clojure on different platforms include:

  • Babashka,58 Native Clojure scripting language leveraging GraalVM native image and Small Clojure Interpreter
  • CljPerl,59 Clojure on Perl
  • ClojureDart,60 Extend Clojure's reach to mobile & desktop apps by porting Clojure to Dart and Flutter
  • Clojerl,61 Clojure on BEAM, the Erlang virtual machine
  • basilisp,62 A Clojure-compatible(-ish) Lisp dialect targeting Python 3.8+
  • ClojureRS,63 Clojure on Rust
  • Ferret,64 compiles to self-contained C++11 that can run on microcontrollers
  • jank,65 Native Clojure hosted in C++ on an LLVM-based JIT
  • Joker,66 an interpreter and linter written in Go
  • Las3r,67 a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
  • Pixie,68 Clojure-inspired Lisp dialect written in RPython
  • Rouge,69 Clojure on YARV in Ruby

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:70

In addition to the tools provided by the community, the official Clojure command-line interface (CLI) tools84 have also become available on Linux, macOS, and Windows since Clojure 1.9.85

Development

The development process is restricted to the Clojure core team, though issues are publicly visible at the Clojure JIRA project page.86 Anyone can ask questions or submit issues and ideas at ask.clojure.org.87 If it's determined that a new issue warrants a JIRA ticket, a core team member will triage it and add it. JIRA issues are processed by a team of screeners and finally approved by Rich Hickey.8889

Impact

With continued interest in functional programming, Clojure's adoption by software developers using the Java platform has continued to increase.90 The language has also been recommended by software developers such as Brian Goetz,919293 Eric Evans,9495 James Gosling,96 Paul Graham,97 and Robert C. Martin.9899100101 ThoughtWorks, while assessing functional programming languages for their Technology Radar,102 described Clojure as "a simple, elegant implementation of Lisp on the JVM" in 2010 and promoted its status to "ADOPT" in 2012.103

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".104 Clojure is used in industry by firms105 such as Apple,106107 Atlassian,108 Funding Circle,109 Netflix,110 Nubank,111 Puppet,112 and Walmart113 as well as government agencies such as NASA.114 It has also been used for creative computing, including visual art, music, games, and poetry.115

In the 2023 edition of Stack Overflow Developer Survey, Clojure was the fourth most admired in the category of programming and scripting languages, with 68.51% of the respondents who have worked with it last year saying they would like to continue using it. In the desired category, however it was marked as such by only 2.2% of the surveyed, whereas the highest scoring JavaScript was desired by 40.15% of the developers participating in the survey.116

Release history

VersionRelease dateMajor features, improvements
October 17, 2007 (2007-10-17)117Initial public release
1.0May 4, 2009 (2009-05-04)118First stable release
1.1December 31, 2009 (2009-12-31)119Futures
1.2August 19, 2010 (2010-08-19)120Protocols
1.3September 23, 2011 (2011-09-23)121Enhanced primitive support
1.4April 15, 2012 (2012-04-15)122Reader literals
1.5March 1, 2013 (2013-03-01)123Reducers
1.5.1March 10, 2013 (2013-03-10)124Fixing a memory leak
1.6March 25, 2014 (2014-03-25)125Java API, improved hashing algorithms
1.7June 30, 2015 (2015-06-30)126Transducers, reader conditionals
1.8January 19, 2016 (2016-01-19)127Additional string functions, direct linking, socket server
1.9December 8, 2017 (2017-12-08)128Integration with spec, command-line tools
1.10December 17, 2018 (2018-12-17)129Improved error reporting, Java compatibility
1.10.1June 6, 2019 (2019-06-06)130Working around a Java performance regression and improving error reporting from clojure.main
1.10.2January 26, 2021 (2021-01-26)131Java interoperability/compatibility improvements and other important language fixes
1.10.3March 4, 2021 (2021-03-04)132prepl support for reader conditionals
1.11.0March 22, 2022 (2022-03-22)133New syntax for keyword argument invocation, new clojure.math namespace, namespace aliasing without loading, and new helper functions added to clojure.core
1.11.1April 5, 2022 (2022-04-05)134Rolling back unintended change in binary serialisation of objects of types clojure.lang.Keyword and clojure.lang.ArraySeq.
1.11.2March 8, 2024 (2024-03-08)135Fix for CVE-2024-22871 Denial of Service vulnerability
Latest version: 1.12.0September 5, 2024 (2024-09-05)136Java method values, params type hints, array class syntax, add-lib, clojure.java.process
Legend:Old versionOld version, still maintainedLatest versionLatest preview versionFuture version

See also

  • Free and open-source software portal
  • Computer programming portal

Further reading

References

  1. Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26. https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/

  2. Hickey, Rich (2009-01-05). "meaning and pronunciation of Clojure". Google.com. https://groups.google.com/d/msg/clojure/4uDxeOS8pwY/UHiYp7p1a3YJ

  3. Krill, Paul (2012-03-22). "Clojure inventor Hickey now aims for Android". InfoWorld.com. https://www.infoworld.com/article/2619641/clojure-inventor-hickey-now-aims-for-android.html

  4. "Clojure". Clojure.org. Retrieved 2019-07-07. https://clojure.org/

  5. "The Reader". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/reader

  6. Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26. https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/

  7. "The Reader". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/reader

  8. "Differences with other Lisps". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/lisps

  9. "Differences with other Lisps". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/lisps

  10. "Values and Change: Clojure's approach to Identity and State". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/state

  11. Hickey, Rich. "Rationale". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/rationale

  12. Torre, Charles (2009-10-06). "Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure". MSDN.com. https://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Rich-Hickey-and-Brian-Beckman-Inside-Clojure/

  13. Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26. https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/

  14. "clojure/spec.alpha". GitHub. 2017-04-26. https://github.com/clojure/spec.alpha

  15. Krill, Paul (2012-03-22). "Clojure inventor Hickey now aims for Android". InfoWorld.com. https://www.infoworld.com/article/2619641/clojure-inventor-hickey-now-aims-for-android.html

  16. Hickey, Rich (2002-10-16). "[ANN] dotLisp: A Lisp dialect for .Net". Google.com. https://groups.google.com/forum/#!topic/comp.lang.scheme/ibf6CC6V66o

  17. Hickey, Rich (2013-04-15). "jfli". SourceForge.net. https://sourceforge.net/projects/jfli/

  18. Hickey, Rich (2013-04-03). "foil: Foreign Object Interface for Lisp". SourceForge.net. https://sourceforge.net/projects/foil/

  19. Hickey, Rich (2013-03-07). "Lisplets". SourceForge.net. https://sourceforge.net/projects/lisplets/

  20. Hickey, Rich (2020-06-12). "A history of Clojure". Proceedings of the ACM on Programming Languages. 4 (HOPL): 1–46. doi:10.1145/3386321. S2CID 219603760. https://doi.org/10.1145%2F3386321

  21. Hickey, Rich (2009-01-05). "meaning and pronunciation of Clojure". Google.com. https://groups.google.com/d/msg/clojure/4uDxeOS8pwY/UHiYp7p1a3YJ

  22. Hickey, Rich. "Rationale". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/rationale

  23. Torre, Charles (2009-10-06). "Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure". MSDN.com. https://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Rich-Hickey-and-Brian-Beckman-Inside-Clojure/

  24. Elmendorf, Dirk (2010-04-01). "Economy Size Geek – Interview with Rich Hickey, Creator of Clojure". LinuxJournal.com. https://www.linuxjournal.com/article/10708

  25. Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26. https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/

  26. "Simple Made Easy". InfoQ. Retrieved 2024-05-02. https://www.infoq.com/presentations/Simple-Made-Easy/

  27. "(iterate think thoughts): Advantages of Data Oriented Programming". yogthos.net. Retrieved 2024-05-02. https://yogthos.net/posts/2020-04-08-advantages-of-data-oriented-programming.html

  28. "talk-transcripts/Hickey_Rich/EffectivePrograms.md at master · matthiasn/talk-transcripts". GitHub. Retrieved 2024-05-02. https://github.com/matthiasn/talk-transcripts/blob/master/Hickey_Rich/EffectivePrograms.md

  29. "Values and Change: Clojure's approach to Identity and State". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/state

  30. "Values and Change: Clojure's approach to Identity and State". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/state

  31. "Hosted on the JVM". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/jvm_hosted

  32. Edwards, Kathryn (2009-08-10). "The A-Z of Programming Languages: Clojure". Computerworld.com.au. Archived from the original on 2019-08-26. https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/

  33. "Java Interop". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/java_interop#_calling_clojure_from_java

  34. Miller, Alex. "Deps and CLI Guide". Clojure.org. Retrieved 2019-07-08. https://clojure.org/guides/deps_and_cli

  35. "Macros". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/macros

  36. Hickey, Rich. "edn". GitHub. Retrieved 2019-07-07. https://github.com/edn-format/edn

  37. "Multimethods and Hierarchies". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/multimethods

  38. "Protocols". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/protocols

  39. "Datatypes: deftype, defrecord and reify". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/datatypes

  40. Goetz, Brian (2014-11-20). "Stewardship: the Sobering Parts". YouTube.com. https://www.youtube.com/watch?v=2y5Pv4yN0b0&t=1h02m18s

  41. Rose, John (2007-07-12). "tail calls in the VM". Oracle.com. https://blogs.oracle.com/jrose/tail-calls-in-the-vm

  42. Rose, John (2009-02-11). "Some languages need to be able to perform tail calls". Java.net. https://bugs.openjdk.java.net/browse/JDK-6804517

  43. "Special Forms". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/special_forms#recur

  44. "Refs and Transactions". Clojure.org. Retrieved 2019-07-07. https://clojure.org/refs

  45. "Agents and Asynchronous Actions". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/agents

  46. Hickey, Rich (2013-06-28). "Clojure core.async Channels". Clojure.org. https://clojure.org/news/2013/06/28/clojure-clore-async-channels

  47. Miller, Alex (2015-06-30). "Clojure 1.7 is now available". Clojure.org. https://clojure.org/news/2015/06/30/clojure-17

  48. "The Reader". Clojure.org. Retrieved 2019-07-07. https://clojure.org/reference/reader

  49. Hickey, Rich (2014-09-17). "Transducers". YouTube.com. https://www.youtube.com/watch?v=6mTbuzafcII

  50. Hickey, Rich (2014-08-06). "Transducers are Coming". Cognitect.com. https://blog.cognitect.com/blog/2014/8/6/transducers-are-coming

  51. Hickey, Rich (2014-11-20). "Inside Transducers". YouTube.com. https://www.youtube.com/watch?v=4KqUvG8HPYo

  52. "Official EDN Spec". edn-format.org. 2022-04-27. http://edn-format.org

  53. "Clojure". Clojure.org. Retrieved 2019-07-07. https://clojure.org/

  54. "Hosted on the JVM". Clojure.org. Retrieved 2019-07-07. https://clojure.org/about/jvm_hosted

  55. "ClojureScript". ClojureScript.org. Retrieved 2019-07-06. https://clojurescript.org

  56. "ClojureScript – FAQ (for JavaScript developers)". ClojureScript.org. Retrieved 2018-02-04. https://clojurescript.org/guides/faq-js#does-clojurescript-work-in-old-browsers

  57. "ClojureCLR". GitHub. Retrieved 2012-06-28. https://github.com/clojure/clojure-clr

  58. Borkent, Michiel. "Babashka". Babashka.org. Retrieved 2019-08-19. https://babashka.org

  59. Hu, Wei. "A Lisp on Perl". MetaCPAN.org. Retrieved 2019-07-06. https://metacpan.org/pod/CljPerl

  60. "What is ClojureDart?", GitHub, Tensegritics, 2022-12-16, retrieved 2022-12-16 https://github.com/Tensegritics/ClojureDart

  61. Facorro, Juan. "Clojerl". GitHub. Retrieved 2019-07-06. https://github.com/clojerl/clojerl

  62. "basilisp". GitHub. Retrieved 2024-05-13. https://github.com/basilisp-lang/basilisp

  63. "ClojureRS". GitHub. Retrieved 2022-03-17. https://github.com/clojure-rs/ClojureRS

  64. Akkaya, Nurullah. "Ferret". Ferret-Lang.org. Retrieved 2019-07-06. https://ferret-lang.org/

  65. Wilkerson, Jeaye. "jank". Jank-Lang.org. Retrieved 2022-08-17. https://jank-lang.org/

  66. Bataev, Roman. "Joker". Joker-Lang.org. Retrieved 2019-07-06. https://joker-lang.org/

  67. Cannon, Aemon. "Laz3r". GitHub. Retrieved 2019-07-06. https://github.com/aemoncannon/las3r

  68. Baldridge, Timothy. "Pixie". GitHub. Retrieved 2025-02-06. https://github.com/pixie-lang/pixie

  69. Connor, Ashe. "Rouge". GitHub. Retrieved 2019-07-06. https://github.com/ecmendenhall/rouge

  70. Miller, Alex (2019-02-04). ""State of Clojure 2019" Results". Clojure.org. https://www.clojure.org/news/2019/02/04/state-of-clojure-2019

  71. Batsov, Bozhidar; contributors. "CIDER: The Clojure Interactive Development Environment that Rocks". CIDER.mx. Retrieved 2019-07-05. https://cider.mx/

  72. Fleming, Colin. "Cursive: Provides full Clojure and ClojureScript language support". JetBrains.com. Retrieved 2019-07-05. https://plugins.jetbrains.com/plugin/8090-cursive

  73. Prokopov, Nikita. "Clojure Sublimed". PackageControl.io. Retrieved 2023-02-18. https://packagecontrol.io/packages/Clojure%20Sublimed

  74. Helenius, Eero. "Tutkain". FlowThing.me. Retrieved 2023-02-18. https://tutkain.flowthing.me/

  75. Pope, Tim. "fireplace.vim: Clojure REPL Support". VIM.org. Retrieved 2019-07-05. https://www.vim.org/scripts/script.php?script_id=4978

  76. Monroe, Dominic (2016-12-13). "Clojure and Vim: An overview – It's very possible". JUXT.pro. https://juxt.pro/blog/posts/vim-1.html

  77. Masashi, Iizuka (2024-04-29). "vim-elin: A Clojure development environment for Vim/Neovim, primarily written in Babashka". GitHub. Archived from the original on 2024-05-02. Retrieved 2024-05-02. https://github.com/liquidz/vim-elin

  78. Caldwell, Oliver. "Neovim Clojure(Script) tooling over prepl". GitHub. Retrieved 2019-11-09. https://github.com/Olical/conjure

  79. Caldwell, Oliver (2019-11-06). "Getting started with Clojure, Neovim and Conjure in minutes". oli.me.uk. https://oli.me.uk/getting-started-with-clojure-neovim-and-conjure-in-minutes/

  80. Strömberg, Peter. "Calva: Clojure & ClojureScript Interactive Programming". VisualStudio.com. Retrieved 2019-07-05. https://marketplace.visualstudio.com/items?itemName=betterthantomorrow.calva

  81. Szabo, Maurício. "Clover". VisualStudio.com. Retrieved 2021-01-28. https://marketplace.visualstudio.com/items?itemName=mauricioszabo.clover

  82. clj-kondo/clj-kondo, clj-kondo, 2024-04-30, retrieved 2024-05-02 https://github.com/clj-kondo/clj-kondo

  83. "Overview - Clojure LSP". clojure-lsp.io. Retrieved 2024-05-02. https://clojure-lsp.io/

  84. Miller, Alex. "Deps and CLI Guide". Clojure.org. Retrieved 2019-07-08. https://clojure.org/guides/deps_and_cli

  85. Miller, Alex (2017-12-08). "Clojure 1.9". Cognitect.com. http://blog.cognitect.com/blog/clojure19

  86. "Clojure". Atlassian.net. Retrieved 2019-07-07. https://clojure.atlassian.net/projects/CLJ

  87. "Clojure Forum". clojure.org. Retrieved 2020-03-20. https://clojure.org/news/2019/07/25/clojure-forum

  88. Hickey, Rich (2018-11-26). "Open Source is Not About You". GitHub. https://gist.github.com/richhickey/1563cddea1002958f96e7ba9519972d9

  89. "Workflow". Clojure.org. Retrieved 2019-07-07. https://clojure.org/dev/workflow

  90. Rinko, Marek (2023-10-18). "Projection of Clojure in 2024". Flexiana. Retrieved 2025-03-27. https://flexiana.com/hidden/2023/10/clojure-in-2024

  91. Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 1 of 3)". Twitch.tv. https://www.twitch.tv/nipafx/clip/BloodyUglySharkFailFish

  92. Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 2 of 3)". Twitch.tv. https://www.twitch.tv/nipafx/clip/GrotesqueWonderfulPigeonEleGiggle

  93. Goetz, Brian (2020-05-24). "Brian Goetz' favorite non-Java JVM language (Part 3 of 3)". Twitch.tv. https://www.twitch.tv/nipafx/clip/EphemeralAdorableWalletGingerPower

  94. Evans, Eric (2018-08-14). "Modelling Time: Eric Evans: Domain-Driven Design Europe 2018". YouTube.com. https://www.youtube.com/watch?v=T29WzvaPNc8&t=926

  95. Evans, Eric (2014-11-21). "Eric Evans on Twitter". Twitter.com. https://twitter.com/ericevans0/status/535742147098853376

  96. "James Gosling meetup with London Java Community". YouTube.com. 2016-10-11. https://www.youtube.com/watch?v=-ktUXFxkSkI&t=24m14s

  97. Graham, Paul (2016-05-06). "Paul Graham on Twitter". Twitter.com. https://twitter.com/paulg/status/728831131534024704

  98. Martin, Robert (2019-08-22). "Why Clojure?". CleanCoder.com. http://blog.cleancoder.com/uncle-bob/2019/08/22/WhyClojure.html

  99. Martin, Robert (2018-11-29). "Unble Bob Martin on Twitter". Twitter.com. https://twitter.com/unclebobmartin/status/1068205421737857024

  100. Martin, Robert (2018-08-01). "Introduction To Functional Programming". CleanCoders.com. https://cleancoders.com/video-details/clean-code-episode-53

  101. Martin, Robert (2017-07-11). "Pragmatic Functional Programming". CleanCoder.com. https://blog.cleancoder.com/uncle-bob/2017/07/11/PragmaticFunctionalProgramming.html

  102. "Technology Radar | An opinionated guide to today's technology landscape". Thoughtworks. Retrieved 2024-05-20. https://www.thoughtworks.com/radar

  103. "Technology Radar: Clojure". ThoughtWorks.com. Retrieved 2019-02-10. https://www.thoughtworks.com/radar/languages-and-frameworks/clojure

  104. Maple, Simon; Binstock, Andrew (2018-10-17). "JVM Ecosystem Report 2018". Snyk.io. https://snyk.io/blog/jvm-ecosystem-report-2018/

  105. "Success Stories". Clojure.org. Retrieved 2018-10-27. https://clojure.org/community/success_stories

  106. Liutikov, Roman (2017-12-17). "Roman Liutikov on Twitter". Twitter.com. https://twitter.com/roman01la/status/942469177444569089

  107. "Jobs at Apple". Apple.com. Retrieved 2019-07-06. https://jobs.apple.com/en-us/search?sort=relevance&search=clojure

  108. Borges, Leonardo (2015-07-07). "Realtime Collaboration with Clojure". YouTube.com. https://www.youtube.com/watch?v=3QR8meTrh5g

  109. Pither, Jon (2016-10-04). "Clojure in London: Funding Circle – Lending some Clojure". JUXT.pro. https://juxt.pro/blog/posts/clojure-in-fundingcircle.html

  110. Williams, Alex (2014-08-03). "The New Stack Makers: Adrian Cockcroft on Sun, Netflix, Clojure, Go, Docker and More". TheNewStack.io. https://thenewstack.io/the-new-stack-makers-adrian-cockcroft-on-sun-netflix-clojure-go-docker-and-more/

  111. "Nubank adquire empresa norte-americana de tecnologia Cognitect". 23 July 2020. https://valorinveste.globo.com/mercados/renda-variavel/empresas/noticia/2020/07/23/nubank-adquire-empresa-norte-americana-de-tecnologia-cognitect.ghtml

  112. Price, Chris (2014-04-11). "A New Era of Application Services at Puppet Labs". Puppet.com. Retrieved 2020-08-06. https://puppet.com/blog/a-new-era-of-application-services-at-puppet-labs/

  113. Phillips, Marc (2015-07-14). "Walmart Runs Clojure at Scale". Cognitect.com. https://blog.cognitect.com/blog/2015/6/30/walmart-runs-clojure-at-scale

  114. "Common-Metadata-Repository". GitHub. Retrieved 2019-07-06. https://github.com/nasa/Common-Metadata-Repository

  115. Meier, Carin (2015-05-06). "Creative computing with Clojure". OReilly.com. http://radar.oreilly.com/2015/05/creative-computing-with-clojure.html

  116. "Stack Overflow Developer Survey 2023". Stack Overflow. Retrieved 2024-05-02. https://survey.stackoverflow.co/2023/?utm_source=social-share&utm_medium=social&utm_campaign=dev-survey-2023

  117. Hickey, Rich (2020-06-12). "A history of Clojure". Proceedings of the ACM on Programming Languages. 4 (HOPL): 1–46. doi:10.1145/3386321. S2CID 219603760. https://doi.org/10.1145%2F3386321

  118. Hickey, Rich (2009-05-04). "Clojure 1.0". BlogSpot.com. https://clojure.blogspot.com/2009/05/clojure-10.html

  119. Hickey, Rich (2009-12-31). "Clojure 1.1 Release". BlogSpot.com. https://clojure.blogspot.com/2009/12/clojure-11-release.html

  120. Hickey, Rich (2010-08-19). "Clojure 1.2 Release". Google.com. https://groups.google.com/forum/#!topic/clojure/tXll-vxyJpc

  121. Redinger, Christopher (2011-09-23). "[ANN] Clojure 1.3 Released". Google.com. https://groups.google.com/forum/#!topic/clojure/w5Nmx5rPaQs

  122. Dipert, Alan (2012-04-17). "[ANN] Clojure 1.4 Released". Google.com. https://groups.google.com/forum/#!topic/clojure/H4f2nbB6gWI

  123. Halloway, Stuart (2013-03-01). "ANN: Clojure 1.5". Google.com. https://groups.google.com/forum/#!topic/clojure/kzF5O0Yfdhc

  124. Halloway, Stuart (2013-03-10). "Clojure 1.5.1". Google.com. https://groups.google.com/forum/#!topic/clojure/PDENUpc44lY

  125. Miller, Alex (2014-03-25). "[ANN] Clojure 1.6". Google.com. https://groups.google.com/forum/#!topic/clojure/pArFVr0fJ0w

  126. Miller, Alex (2015-06-30). "Clojure 1.7 is now available". Clojure.org. https://clojure.org/news/2015/06/30/clojure-17

  127. Miller, Alex (2016-01-19). "Clojure 1.8 is now available". Clojure.org. https://clojure.org/news/2016/01/19/clojure18

  128. Miller, Alex (2017-12-08). "Clojure 1.9 is now available". Clojure.org. https://clojure.org/news/2017/12/08/clojure19

  129. Miller, Alex (2018-12-17). "Clojure 1.10 release". Clojure.org. https://clojure.org/news/2018/12/17/clojure110

  130. Miller, Alex (2019-06-06). "Clojure 1.10.1 release". Clojure.org. https://clojure.org/news/2019/06/06/clojure1-10-1

  131. Miller, Alex (2021-01-26). "Clojure 1.10.2 release". Clojure.org. https://clojure.org/news/2021/01/26/clojure1-10-2

  132. Miller, Alex (2021-03-04). "Clojure 1.10.3 release". Clojure.org. https://clojure.org/news/2021/03/04/clojure1-10-3

  133. Miller, Alex (2022-03-22). "Clojure 1.11.0 release". Clojure.org. https://clojure.org/news/2022/03/22/clojure-1-11-0

  134. Miller, Alex (2022-04-05). "Clojure 1.11.1 release". Clojure.org. https://clojure.org/news/2022/04/05/clojure-1-11-1

  135. Miller, Alex (2024-03-08). "Clojure 1.11.2 release". Clojure.org. https://clojure.org/news/2024/03/08/clojure-1-11-2

  136. Miller, Alex (2024-09-05). "Clojure 1.12.0 release". Clojure.org. https://clojure.org/news/2024/09/05/clojure-1-12-0