# Clojure

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Clojure
> Markdown URL: https://mediated.wiki/source/Clojure.md
> Source: https://en.wikipedia.org/wiki/Clojure
> Source revision: 1355917731
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Dialect of the Lisp programming language on the Java platform

Clojure Paradigm Multi-paradigm: agent-oriented[1] concurrent[2][3] functional[4] logic[5] macro[6] pipeline[7] Family Lisp Designed by Rich Hickey First appeared 2007; 19 years ago (2007) Stable release 1.12.4[8] / 10 December 2025; 6 months ago (2025-12-10) Typing discipline Dynamic, strong Memory management Garbage collection via a host (JVM, CLR, a JavaScript runtime such as V8 in case of ClojureScript or BEAM (see below) Platform Java JavaScript .NET License Eclipse Public Filename extensions .clj .cljs .cljr .cljc .cljd .edn Website clojure.org Dialects ClojureScript, ClojureDart Influenced by C# C++[9] Common Lisp Erlang Haskell[10] Java ML Prolog Racket[11] Ruby[12] Scheme Wolfram Language[13] Influenced Elixir Hy Janet[14] LFE Pixie[15] Rhine[16] Clojure Programming at Wikibooks

**Clojure** ([/ˈkloʊʒər/](https://en.wikipedia.org/wiki/Help:IPA/English), like *closure*)[17][18] is a [dynamic](/source/Dynamic_programming_language) and [functional](/source/Functional_programming) [dialect](/source/Dialect_(computing)) of the [programming language](/source/Programming_language) [Lisp](/source/Lisp_(programming_language)) on the [Java platform](/source/Java_(software_platform)).[19][20]

Like most other Lisps, Clojure's [syntax](/source/Syntax_(programming_languages)) is built on [S-expressions](/source/S-expression) that are first [parsed](/source/Parsing) into [data structures](/source/Data_structure) by a [Lisp reader](/source/Lisp_reader) before being [compiled](/source/Compiler).[21][17] Clojure's reader supports literal syntax for [maps](/source/Hash_table), sets, and [vectors](/source/Array_(data_structure)) along with lists, and these are compiled to the mentioned structures directly.[21] Clojure treats [code as data](/source/Homoiconicity) and has a [Lisp macro](/source/Lisp_macro) system.[22] Clojure is a [Lisp-1](/source/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.[22]

Clojure advocates [immutability](/source/Immutable_object) and [immutable data structures](/source/Persistent_data_structure) and encourages programmers to be explicit about managing identity and its states.[23] This focus on programming with immutable values and explicit progression-of-time constructs is intended to facilitate developing more robust, especially [concurrent](/source/Concurrent_programming), programs that are simple and fast.[24][25][17] While its type system is entirely [dynamic](/source/Type_system), recent efforts have also sought the implementation of a [dependent type system](/source/Dependent_type).[26]

The language was created by [Rich Hickey](/source/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](/source/Common_Language_Runtime) (.NET). Hickey continues to lead development of the language as its [benevolent dictator for life](/source/Benevolent_dictator_for_life).

## History

Rich Hickey, creator of Clojure

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

Hickey started working on Clojure in 2005[31][32] and spent about two and a half years working on Clojure before releasing it publicly in October 2007,[33] much of that time working exclusively on Clojure with no outside funding. Stephanie Hickey, his wife, helped to design the language by a being an active listener and participating in discussions without writing any code[32]. 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](/source/Word_play) on the programming concept "[closure](/source/Closure_(computer_programming))" incorporating the letters C, L, and J for [C#](/source/C_Sharp_(programming_language)), [Lisp](/source/Lisp_(programming_language)), and [Java](/source/Java_(programming_language)) respectively—three languages which had a major influence on Clojure's design.[18]

## Design

Rich Hickey developed Clojure because he wanted a modern [Lisp](/source/Lisp_(programming_language)) for [functional programming](/source/Functional_programming), symbiotic with the established [Java](/source/Java_(software_platform)) platform, and designed for [concurrency](/source/Concurrency_(computer_science)).[24][25][34][17][32] He has also stressed the importance of simplicity in programming language design and software architecture, advocating for [loose coupling](/source/Loose_coupling), [polymorphism](/source/Polymorphism_(computer_science)) via [protocols and type classes](/source/Type_class) instead of [inheritance](/source/Inheritance_(object-oriented_programming)), [stateless functions](/source/Pure_function) that are [namespaced](/source/Namespace) instead of [methods](/source/Method_(computer_programming)) or [replacing syntax with data](/source/Data-driven_programming).[35][36][31]

Clojure's approach to [state](/source/State_(computer_science)) is characterized by the concept of identities,[23] 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](/source/Reference_type), each having well-defined semantics for the transition between states.[23]

Clojure runs on the Java platform and as a result, integrates with Java and fully supports calling Java code from Clojure,[37][17] and Clojure code can be called from Java, too.[38] The community uses tools such as Clojure [command-line interface](/source/Command-line_interface) (CLI)[39] or [Leiningen](/source/Leiningen_(software)) for project automation, providing support for [Maven](/source/Apache_Maven) integration. These tools handle project package management and dependencies and are configured using Clojure syntax.

As a Lisp dialect, Clojure supports [functions](/source/Function_(programming)) as [first-class objects](/source/First-class_function), a [read–eval–print loop](/source/Read%E2%80%93eval%E2%80%93print_loop) (REPL), and a macro system.[6] Clojure's [Lisp macro](/source/Lisp_macro) system is very similar to that of [Common Lisp](/source/Common_Lisp) with the exception that Clojure's version of the [backquote](/source/Backtick) (termed "syntax quote") qualifies symbols with their [namespace](/source/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.[40] Clojure supports [multimethods](/source/Multiple_dispatch)[41] and for [interface](/source/Software_Interface)-like abstractions has a [protocol](/source/Protocol_(object-oriented_programming))[42] based polymorphism and data type system using [records](/source/Record_(computer_science)),[43] providing high-performance and dynamic polymorphism designed to avoid the [expression problem](/source/Expression_problem).

Clojure has support for [lazy sequences](/source/Lazy_evaluation) and encourages the principle of [immutability](/source/Immutable_object) and [persistent data structures](/source/Persistent_data_structure). As a [functional language](/source/Functional_programming), emphasis is placed on [recursion](/source/Recursion) and [higher-order functions](/source/Higher-order_function) instead of side-effect-based looping. Automatic [tail call](/source/Tail_call) optimization is not supported as the JVM does not support it natively;[44][45][46] it is possible to do so explicitly by using the recur keyword.[47] For [parallel](/source/Parallel_computing) and [concurrent](/source/Concurrent_computing) programming Clojure provides [software transactional memory](/source/Software_transactional_memory),[48] a reactive [agent system](/source/Agent-based_model),[1] and [channel](/source/Communicating_sequential_processes)-based concurrent programming.[49]

Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure, ClojureScript and ClojureCLR code in the same namespace.[50][21] Transducers were added as a method for composing transformations. Transducers enable higher-order functions such as [map](/source/Map_(higher-order_function)) and [fold](/source/Fold_(higher-order_function)) to generalize over any source of input data. While traditionally these functions operate on [sequences](/source/List_(abstract_data_type)), transducers allow them to work on channels and let the user define their own models for transduction.[51][52][53]

## Extensible Data Notation

**Extensible Data Notation**, or **edn**,[54] 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](/source/JSON) or [XML](/source/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](/source/Nullable_type) 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](/source/Java_(software_platform)),[20][37] but other target implementations exist. The most notable of these is ClojureScript,[55] which compiles to [ECMAScript](/source/ECMAScript) 3[56] (or newer ES5 or ES5-strict, up to ES-2021, and ES-next possible)[57] and ClojureCLR,[58] a full port on the [.NET](/source/.NET) platform, interoperable with its ecosystem.

Other implementations of Clojure on different platforms include:

- Babashka,[59] Native Clojure scripting language leveraging [GraalVM](/source/GraalVM) native image and Small Clojure Interpreter

- ClojureDart,[60] Extend Clojure's reach to mobile & desktop apps by porting Clojure to Dart and Flutter

- Clojerl,[61] Clojure on [BEAM](/source/BEAM_(Erlang_virtual_machine)), the [Erlang](/source/Erlang_(programming_language)) [virtual machine](/source/Virtual_machine)

- basilisp,[62] A Clojure-compatible(-ish) Lisp dialect targeting Python 3.8+

- ClojureRS,[63] Clojure on [Rust](/source/Rust_(programming_language))

- 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](/source/Lint_(software)) written in [Go](/source/Go_(programming_language))

## Tools

Tooling for Clojure development has seen significant improvement over the years. The following is a list of some popular [IDEs](/source/Integrated_development_environment) and [text editors](/source/Text_editor) with plug-ins that add support for programming in Clojure:[67]

- [Emacs](/source/Emacs), with CIDER[68]

- [IntelliJ IDEA](/source/IntelliJ_IDEA), with Cursive[69] (a free license is available for [non-commercial](/source/Non-commercial) use)

- [Sublime Text](/source/Sublime_Text), with Clojure Sublimed,[70] or Tutkain,[71]

- [Vim](/source/Vim_(text_editor)), with fireplace.vim,[72][73] vim-elin,[74] or Conjure (Neovim only)[75][76]

- [Visual Studio Code](/source/Visual_Studio_Code), with Calva[77]

- IDE-agnostic: clojure-lsp[78] as a [Language Server](/source/Language_Server_Protocol); clj-kondo[79] as a [linter](/source/Lint_(software)) (also used by clojure-lsp)

In addition to the tools provided by the community, the official Clojure [command-line interface](/source/Command-line_interface) (CLI) tools[39] have also become available on [Linux](/source/Linux), [macOS](/source/MacOS), and [Windows](/source/Windows) since Clojure 1.9.[80]

## Development

The development process is restricted to the Clojure core team, though issues are publicly visible at the Clojure [JIRA](/source/Jira_(software)) project page.[81] Anyone can ask questions or submit issues and ideas at ask.clojure.org.[82] 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.[83][84]

## Impact

With continued interest in functional programming, Clojure's adoption by software developers using the Java platform has continued to increase.[85] The language has also been recommended by software developers such as Brian Goetz,[86][87][88] Eric Evans,[89][90] [James Gosling](/source/James_Gosling),[91] [Paul Graham](/source/Paul_Graham_(programmer)),[92] and [Robert C. Martin](/source/Robert_C._Martin).[93][94][95][96] [ThoughtWorks](/source/ThoughtWorks), while assessing functional programming languages for their Technology Radar,[97] described Clojure as "a simple, elegant implementation of Lisp on the JVM" in 2010 and promoted its status to "ADOPT" in 2012.[98]

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

In the 2023 edition of [Stack Overflow](/source/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](/source/JavaScript) was *desired* by 40.15% of the developers participating in the survey.[111]

## Release history

Version Release date Major features, improvements October 17, 2007 (2007-10-17)[33] Initial public release 1.0 May 4, 2009 (2009-05-04)[112] First stable release 1.1 December 31, 2009 (2009-12-31)[113] Futures 1.2 August 19, 2010 (2010-08-19)[114] Protocols 1.3 September 23, 2011 (2011-09-23)[115] Enhanced primitive support 1.4 April 15, 2012 (2012-04-15)[116] Reader literals 1.5 March 1, 2013 (2013-03-01)[117] Reducers 1.5.1 March 10, 2013 (2013-03-10)[118] Fixing a memory leak 1.6 March 25, 2014 (2014-03-25)[119] Java API, improved hashing algorithms 1.7 June 30, 2015 (2015-06-30)[50] Transducers, reader conditionals 1.8 January 19, 2016 (2016-01-19)[120] Additional string functions, direct linking, socket server 1.9 December 8, 2017 (2017-12-08)[121] Integration with spec, command-line tools 1.10 December 17, 2018 (2018-12-17)[122] Improved error reporting, Java compatibility 1.10.1 June 6, 2019 (2019-06-06)[123] Working around a Java performance regression and improving error reporting from clojure.main 1.10.2 January 26, 2021 (2021-01-26)[124] Java interoperability/compatibility improvements and other important language fixes 1.10.3 March 4, 2021 (2021-03-04)[125] prepl support for reader conditionals 1.11.0 March 22, 2022 (2022-03-22)[126] New syntax for keyword argument invocation, new clojure.math namespace, namespace aliasing without loading, and new helper functions added to clojure.core 1.11.1 April 5, 2022 (2022-04-05)[127] Rolling back unintended change in binary serialisation of objects of types clojure.lang.Keyword and clojure.lang.ArraySeq. 1.11.2 March 8, 2024 (2024-03-08)[128] Fix for CVE-2024-22871 Denial of Service 1.12.0 September 5, 2024 (2024-09-05)[129] Java method values, params type hints, array class syntax, add-lib, clojure.java.process 1.12.1 June 2, 2025 (2025-06-02)[130] Includes bug fixes, improved interop, enhanced tool support, and metadata updates. 1.12.2 August 25, 2025 (2025-08-25)[131] Fixes for CLJ-2914, CLJ-1798, CLJ-2916 and CLJ-2917. 1.12.3 August 25, 2025 (2025-08-25)[132] Fix for CLJ-2919. Latest version: 1.12.4 December 10, 2025 (2025-12-10)[8] Fix for CLJ-2924. Legend: Unsupported Supported Latest version Preview version Future version

## See also

- [Free and open-source software portal](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software)
- [Computer programming portal](https://en.wikipedia.org/wiki/Portal:Computer_programming)

- [List of JVM languages](/source/List_of_JVM_languages)

- [List of CLI languages](/source/List_of_CLI_languages)

- [Comparison of programming languages](/source/Comparison_of_programming_languages)

## References

1. ^ [***a***](#cite_ref-reference/agents_1-0) [***b***](#cite_ref-reference/agents_1-1) ["Agents and Asynchronous Actions"](https://clojure.org/reference/agents). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-2)** ["Concurrent Programming"](https://clojure.org/about/concurrent_programming). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-3)** Hickey, Rich; contributors. ["core.async"](https://github.com/clojure/core.async). *[GitHub](/source/GitHub)*. Retrieved 2019-07-07.

1. **[^](#cite_ref-4)** ["Functional Programming"](https://clojure.org/about/functional_programming). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-5)** Nolen, David; Hickey, Rich. ["core.logic"](https://github.com/clojure/core.logic/). *GitHub*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-reference/macros_6-0) [***b***](#cite_ref-reference/macros_6-1) ["Macros"](https://clojure.org/reference/macros). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-7)** Esterhazy, Paulus. ["Threading Macros Guide"](https://clojure.org/guides/threading_macros). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-release/clojure1-12-4_8-0) [***b***](#cite_ref-release/clojure1-12-4_8-1) Miller, Alex (2025-12-10). ["Clojure 1.12.4 Released"](https://clojure.org/news/2025/12/10/clojure-1-12-4).

1. **[^](#cite_ref-9)** Fogus, Michael (2011). ["Rich Hickey Q&A"](https://web.archive.org/web/20170111184835/http://www.codequarterly.com/2011/rich-hickey/). *CodeQuarterly.com*. Archived from [the original](http://www.codequarterly.com/2011/rich-hickey/) on 2017-01-11.

1. **[^](#cite_ref-10)** Hickey, Rich (2011). ["Simple Made Easy"](https://youtube.com/watch?v=LKtk3HCgTa8). *YouTube*.[*[better source needed](https://en.wikipedia.org/wiki/Wikipedia:Verifiability#Questionable_sources)*]

1. **[^](#cite_ref-11)** Bonnaire-Sergeant, Ambrose (2012). *A Practical Optional Type System for Clojure* (Thesis). The University of Western Australia.

1. **[^](#cite_ref-12)** ["Clojure Programming"](http://cdn.oreilly.com/oreilly/booksamplers/9781449394707_sampler.pdf) (PDF). *OReilly.com*. Retrieved 2013-04-30.

1. **[^](#cite_ref-13)** Hickey, Rich. ["Clojure Bookshelf"](https://web.archive.org/web/20171003001051/https://www.amazon.com/gp/richpub/listmania/fullview/R3LG3ZBZS4GCTH). *Amazon.com*. Archived from [the original](https://www.amazon.com/gp/richpub/listmania/fullview/R3LG3ZBZS4GCTH) on 2017-10-03. Retrieved 2019-07-07.

1. **[^](#cite_ref-14)** Rose, Calvin; contributors. ["Janet Language"](https://janet-lang.org/). *Janet-Lang.org*. Retrieved 2023-02-18.

1. **[^](#cite_ref-15)** Baldridge, Timothy. ["Pixie"](https://github.com/pixie-lang/pixie). *[GitHub](/source/GitHub)*. Retrieved 2025-02-06.

1. **[^](#cite_ref-16)** Ramachandra, Ramkumar. ["Rhine"](https://github.com/artagnon/rhine-ml). *[GitHub](/source/GitHub)*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-interview/a-z_17-0) [***b***](#cite_ref-interview/a-z_17-1) [***c***](#cite_ref-interview/a-z_17-2) [***d***](#cite_ref-interview/a-z_17-3) [***e***](#cite_ref-interview/a-z_17-4) Edwards, Kathryn (2009-08-10). ["The A-Z of Programming Languages: Clojure"](https://web.archive.org/web/20190826190240/https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/). *Computerworld.com.au*. Archived from [the original](https://www.computerworld.com.au/article/313989/a-z_programming_languages_clojure/) on 2019-08-26.

1. ^ [***a***](#cite_ref-clojure-meaning-pronunciation_18-0) [***b***](#cite_ref-clojure-meaning-pronunciation_18-1) Hickey, Rich (2009-01-05). ["meaning and pronunciation of Clojure"](https://groups.google.com/d/msg/clojure/4uDxeOS8pwY/UHiYp7p1a3YJ). *Google.com*.

1. ^ [***a***](#cite_ref-platform/android_19-0) [***b***](#cite_ref-platform/android_19-1) Krill, Paul (2012-03-22). ["Clojure inventor Hickey now aims for Android"](https://www.infoworld.com/article/2619641/clojure-inventor-hickey-now-aims-for-android.html). *InfoWorld.com*.

1. ^ [***a***](#cite_ref-clojure.org_20-0) [***b***](#cite_ref-clojure.org_20-1) ["Clojure"](https://clojure.org/). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-reference/reader_21-0) [***b***](#cite_ref-reference/reader_21-1) [***c***](#cite_ref-reference/reader_21-2) ["The Reader"](https://clojure.org/reference/reader). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-reference/lisps_22-0) [***b***](#cite_ref-reference/lisps_22-1) ["Differences with other Lisps"](https://clojure.org/reference/lisps). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-about/state_23-0) [***b***](#cite_ref-about/state_23-1) [***c***](#cite_ref-about/state_23-2) ["Values and Change: Clojure's approach to Identity and State"](https://clojure.org/about/state). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-about/rationale_24-0) [***b***](#cite_ref-about/rationale_24-1) Hickey, Rich. ["Rationale"](https://clojure.org/about/rationale). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-msdn/inside-clojure_25-0) [***b***](#cite_ref-msdn/inside-clojure_25-1) Torre, Charles (2009-10-06). ["Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure"](https://channel9.msdn.com/shows/Going+Deep/Expert-to-Expert-Rich-Hickey-and-Brian-Beckman-Inside-Clojure/). *MSDN.com*.

1. **[^](#cite_ref-26)** ["clojure/spec.alpha"](https://github.com/clojure/spec.alpha). *[GitHub](/source/GitHub)*. 2017-04-26.

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

1. **[^](#cite_ref-28)** Hickey, Rich (2013-04-15). ["jfli"](https://sourceforge.net/projects/jfli/). *SourceForge.net*.

1. **[^](#cite_ref-29)** Hickey, Rich (2013-04-03). ["foil: Foreign Object Interface for Lisp"](https://sourceforge.net/projects/foil/). *SourceForge.net*.

1. **[^](#cite_ref-30)** Hickey, Rich (2013-03-07). ["Lisplets"](https://sourceforge.net/projects/lisplets/). *SourceForge.net*.

1. ^ [***a***](#cite_ref-:0_31-0) [***b***](#cite_ref-:0_31-1) ["talk-transcripts/Hickey_Rich/EffectivePrograms.md at master · matthiasn/talk-transcripts"](https://github.com/matthiasn/talk-transcripts/blob/master/Hickey_Rich/EffectivePrograms.md). *GitHub*. Retrieved 2024-05-02.

1. ^ [***a***](#cite_ref-:1_32-0) [***b***](#cite_ref-:1_32-1) [***c***](#cite_ref-:1_32-2) CultRepo (2026-04-16). [*How one programmer's pet project changed how we think about software*](https://www.youtube.com/watch?v=Y24vK_QDLFg). Retrieved 2026-04-17 – via YouTube.

1. ^ [***a***](#cite_ref-clojure_history_33-0) [***b***](#cite_ref-clojure_history_33-1) Hickey, Rich (2020-06-12). ["A history of Clojure"](https://doi.org/10.1145%2F3386321). *Proceedings of the ACM on Programming Languages*. **4** (HOPL): 1–46. [doi](/source/Doi_(identifier)):[10.1145/3386321](https://doi.org/10.1145%2F3386321). [S2CID](/source/S2CID_(identifier)) [219603760](https://api.semanticscholar.org/CorpusID:219603760).

1. **[^](#cite_ref-34)** Elmendorf, Dirk (2010-04-01). ["Economy Size Geek – Interview with Rich Hickey, Creator of Clojure"](https://www.linuxjournal.com/article/10708). *LinuxJournal.com*.

1. **[^](#cite_ref-35)** ["Simple Made Easy"](https://www.infoq.com/presentations/Simple-Made-Easy/). *InfoQ*. Retrieved 2024-05-02.

1. **[^](#cite_ref-36)** ["(iterate think thoughts): Advantages of Data Oriented Programming"](https://yogthos.net/posts/2020-04-08-advantages-of-data-oriented-programming.html). *yogthos.net*. Retrieved 2024-05-02.

1. ^ [***a***](#cite_ref-about/jvm_hosted_37-0) [***b***](#cite_ref-about/jvm_hosted_37-1) ["Hosted on the JVM"](https://clojure.org/about/jvm_hosted). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-38)** ["Java Interop"](https://clojure.org/reference/java_interop#_calling_clojure_from_java). *Clojure.org*. Retrieved 2019-07-07.

1. ^ [***a***](#cite_ref-guides/deps_and_cli_39-0) [***b***](#cite_ref-guides/deps_and_cli_39-1) Miller, Alex. ["Deps and CLI Guide"](https://clojure.org/guides/deps_and_cli). *Clojure.org*. Retrieved 2019-07-08.

1. **[^](#cite_ref-40)** Hickey, Rich. ["edn"](https://github.com/edn-format/edn). *GitHub*. Retrieved 2019-07-07.

1. **[^](#cite_ref-41)** ["Multimethods and Hierarchies"](https://clojure.org/reference/multimethods). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-42)** ["Protocols"](https://clojure.org/reference/protocols). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-43)** ["Datatypes: deftype, defrecord and reify"](https://clojure.org/reference/datatypes). *Clojure.org*. Retrieved 2019-07-07.

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

1. **[^](#cite_ref-45)** Rose, John (2007-07-12). ["tail calls in the VM"](https://blogs.oracle.com/jrose/tail-calls-in-the-vm). *Oracle.com*.

1. **[^](#cite_ref-46)** Rose, John (2009-02-11). ["Some languages need to be able to perform tail calls"](https://bugs.openjdk.java.net/browse/JDK-6804517). *Java.net*.

1. **[^](#cite_ref-47)** ["Special Forms"](https://clojure.org/reference/special_forms#recur). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-48)** ["Refs and Transactions"](https://clojure.org/refs). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-49)** Hickey, Rich (2013-06-28). ["Clojure core.async Channels"](https://clojure.org/news/2013/06/28/clojure-clore-async-channels). *Clojure.org*.

1. ^ [***a***](#cite_ref-release/clojure-17_50-0) [***b***](#cite_ref-release/clojure-17_50-1) Miller, Alex (2015-06-30). ["Clojure 1.7 is now available"](https://clojure.org/news/2015/06/30/clojure-17). *Clojure.org*.

1. **[^](#cite_ref-51)** Hickey, Rich (2014-09-17). ["Transducers"](https://www.youtube.com/watch?v=6mTbuzafcII). *YouTube.com*.

1. **[^](#cite_ref-52)** Hickey, Rich (2014-08-06). ["Transducers are Coming"](https://blog.cognitect.com/blog/2014/8/6/transducers-are-coming). *Cognitect.com*.

1. **[^](#cite_ref-53)** Hickey, Rich (2014-11-20). ["Inside Transducers"](https://www.youtube.com/watch?v=4KqUvG8HPYo). *YouTube.com*.

1. **[^](#cite_ref-54)** ["Official EDN Spec"](http://edn-format.org). *edn-format.org*. 2022-04-27.

1. **[^](#cite_ref-55)** ["ClojureScript"](https://clojurescript.org). *ClojureScript.org*. Retrieved 2019-07-06.

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

1. **[^](#cite_ref-57)** ["ClojureScript - Compiler Options"](https://clojurescript.org/reference/compiler-options#language-in-and-language-out). *clojurescript.org*. Retrieved 2026-01-01.

1. **[^](#cite_ref-58)** ["ClojureCLR"](https://github.com/clojure/clojure-clr). *GitHub*. Retrieved 2012-06-28.

1. **[^](#cite_ref-59)** Borkent, Michiel. ["Babashka"](https://babashka.org). *Babashka.org*. Retrieved 2019-08-19.

1. **[^](#cite_ref-60)** ["What is ClojureDart?"](https://github.com/Tensegritics/ClojureDart), *GitHub*, Tensegritics, 2022-12-16, retrieved 2022-12-16

1. **[^](#cite_ref-61)** Facorro, Juan. ["Clojerl"](https://github.com/clojerl/clojerl). *GitHub*. Retrieved 2019-07-06.

1. **[^](#cite_ref-62)** ["basilisp"](https://github.com/basilisp-lang/basilisp). *GitHub*. Retrieved 2024-05-13.

1. **[^](#cite_ref-63)** ["ClojureRS"](https://github.com/clojure-rs/ClojureRS). *GitHub*. Retrieved 2022-03-17.

1. **[^](#cite_ref-64)** Akkaya, Nurullah. ["Ferret"](https://ferret-lang.org/). *Ferret-Lang.org*. Retrieved 2019-07-06.

1. **[^](#cite_ref-65)** Wilkerson, Jeaye. ["jank"](https://jank-lang.org/). *Jank-Lang.org*. Retrieved 2022-08-17.

1. **[^](#cite_ref-66)** Bataev, Roman. ["Joker"](https://joker-lang.org/). *Joker-Lang.org*. Retrieved 2019-07-06.

1. **[^](#cite_ref-67)** Miller, Alex (2019-02-04). [""State of Clojure 2019" Results"](https://www.clojure.org/news/2019/02/04/state-of-clojure-2019). *Clojure.org*.

1. **[^](#cite_ref-68)** Batsov, Bozhidar; contributors. ["CIDER: The Clojure Interactive Development Environment that Rocks"](https://cider.mx/). *CIDER.mx*. Retrieved 2019-07-05.

1. **[^](#cite_ref-69)** Fleming, Colin. ["Cursive: Provides full Clojure and ClojureScript language support"](https://plugins.jetbrains.com/plugin/8090-cursive). *JetBrains.com*. Retrieved 2019-07-05.

1. **[^](#cite_ref-70)** Prokopov, Nikita. ["Clojure Sublimed"](https://packagecontrol.io/packages/Clojure%20Sublimed). *PackageControl.io*. Retrieved 2023-02-18.

1. **[^](#cite_ref-71)** Helenius, Eero. ["Tutkain"](https://tutkain.flowthing.me/). *FlowThing.me*. Retrieved 2023-02-18.

1. **[^](#cite_ref-72)** Pope, Tim. ["fireplace.vim: Clojure REPL Support"](https://www.vim.org/scripts/script.php?script_id=4978). *VIM.org*. Retrieved 2019-07-05.

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

1. **[^](#cite_ref-74)** Masashi, Iizuka (2024-04-29). ["vim-elin: A Clojure development environment for Vim/Neovim, primarily written in Babashka"](https://github.com/liquidz/vim-elin). *GitHub*. [Archived](https://web.archive.org/web/20240502002453/https://github.com/liquidz/vim-elin) from the original on 2024-05-02. Retrieved 2024-05-02.

1. **[^](#cite_ref-75)** Caldwell, Oliver. ["Neovim Clojure(Script) tooling over prepl"](https://github.com/Olical/conjure). *GitHub*. Retrieved 2019-11-09.

1. **[^](#cite_ref-76)** Caldwell, Oliver (2019-11-06). ["Getting started with Clojure, Neovim and Conjure in minutes"](https://oli.me.uk/getting-started-with-clojure-neovim-and-conjure-in-minutes/). *oli.me.uk*.

1. **[^](#cite_ref-77)** Strömberg, Peter. ["Calva: Clojure & ClojureScript Interactive Programming"](https://marketplace.visualstudio.com/items?itemName=betterthantomorrow.calva). *VisualStudio.com*. Retrieved 2019-07-05.

1. **[^](#cite_ref-78)** ["Overview - Clojure LSP"](https://clojure-lsp.io/). *clojure-lsp.io*. Retrieved 2024-05-02.

1. **[^](#cite_ref-79)** [*clj-kondo/clj-kondo*](https://github.com/clj-kondo/clj-kondo), clj-kondo, 2024-04-30, retrieved 2024-05-02

1. **[^](#cite_ref-80)** Miller, Alex (2017-12-08). ["Clojure 1.9"](http://blog.cognitect.com/blog/clojure19). *Cognitect.com*.

1. **[^](#cite_ref-81)** ["Clojure"](https://clojure.atlassian.net/projects/CLJ). *Atlassian.net*. Retrieved 2019-07-07.

1. **[^](#cite_ref-82)** ["Clojure Forum"](https://clojure.org/news/2019/07/25/clojure-forum). *clojure.org*. Retrieved 2020-03-20.

1. **[^](#cite_ref-83)** Hickey, Rich (2018-11-26). ["Open Source is Not About You"](https://gist.github.com/richhickey/1563cddea1002958f96e7ba9519972d9). *GitHub*.

1. **[^](#cite_ref-84)** ["Workflow"](https://clojure.org/dev/workflow). *Clojure.org*. Retrieved 2019-07-07.

1. **[^](#cite_ref-85)** Rinko, Marek (2023-10-18). ["Projection of Clojure in 2024"](https://flexiana.com/hidden/2023/10/clojure-in-2024). *Flexiana*. Retrieved 2025-03-27.

1. **[^](#cite_ref-86)** Goetz, Brian (2020-05-24). ["Brian Goetz' favorite non-Java JVM language (Part 1 of 3)"](https://www.twitch.tv/nipafx/clip/BloodyUglySharkFailFish). *Twitch.tv*.

1. **[^](#cite_ref-87)** Goetz, Brian (2020-05-24). ["Brian Goetz' favorite non-Java JVM language (Part 2 of 3)"](https://www.twitch.tv/nipafx/clip/GrotesqueWonderfulPigeonEleGiggle). *Twitch.tv*.

1. **[^](#cite_ref-88)** Goetz, Brian (2020-05-24). ["Brian Goetz' favorite non-Java JVM language (Part 3 of 3)"](https://www.twitch.tv/nipafx/clip/EphemeralAdorableWalletGingerPower). *Twitch.tv*.

1. **[^](#cite_ref-89)** Evans, Eric (2018-08-14). ["Modelling Time: Eric Evans: Domain-Driven Design Europe 2018"](https://www.youtube.com/watch?v=T29WzvaPNc8&t=926). *YouTube.com*.

1. **[^](#cite_ref-90)** Evans, Eric (2014-11-21). ["Eric Evans on Twitter"](https://twitter.com/ericevans0/status/535742147098853376). *Twitter.com*.

1. **[^](#cite_ref-91)** ["James Gosling meetup with London Java Community"](https://www.youtube.com/watch?v=-ktUXFxkSkI&t=24m14s). *YouTube.com*. 2016-10-11.

1. **[^](#cite_ref-92)** Graham, Paul (2016-05-06). ["Paul Graham on Twitter"](https://twitter.com/paulg/status/728831131534024704). *Twitter.com*.

1. **[^](#cite_ref-93)** Martin, Robert (2019-08-22). ["Why Clojure?"](http://blog.cleancoder.com/uncle-bob/2019/08/22/WhyClojure.html). *CleanCoder.com*.

1. **[^](#cite_ref-94)** Martin, Robert (2018-11-29). ["Unble Bob Martin on Twitter"](https://twitter.com/unclebobmartin/status/1068205421737857024). *Twitter.com*.

1. **[^](#cite_ref-95)** Martin, Robert (2018-08-01). ["Introduction To Functional Programming"](https://cleancoders.com/video-details/clean-code-episode-53). *CleanCoders.com*.

1. **[^](#cite_ref-96)** Martin, Robert (2017-07-11). ["Pragmatic Functional Programming"](https://blog.cleancoder.com/uncle-bob/2017/07/11/PragmaticFunctionalProgramming.html). *CleanCoder.com*.

1. **[^](#cite_ref-97)** ["Technology Radar | An opinionated guide to today's technology landscape"](https://www.thoughtworks.com/radar). *Thoughtworks*. Retrieved 2024-05-20.

1. **[^](#cite_ref-98)** ["Technology Radar: Clojure"](https://www.thoughtworks.com/radar/languages-and-frameworks/clojure). *ThoughtWorks.com*. Retrieved 2019-02-10.

1. **[^](#cite_ref-99)** Maple, Simon; Binstock, Andrew (2018-10-17). ["JVM Ecosystem Report 2018"](https://snyk.io/blog/jvm-ecosystem-report-2018/). *Snyk.io*.

1. **[^](#cite_ref-100)** ["Success Stories"](https://clojure.org/community/success_stories). *Clojure.org*. Retrieved 2018-10-27.

1. **[^](#cite_ref-101)** Liutikov, Roman (2017-12-17). ["Roman Liutikov on Twitter"](https://twitter.com/roman01la/status/942469177444569089). *Twitter.com*.

1. **[^](#cite_ref-102)** ["Jobs at Apple"](https://jobs.apple.com/en-us/search?sort=relevance&search=clojure). *Apple.com*. Retrieved 2019-07-06.

1. **[^](#cite_ref-103)** Borges, Leonardo (2015-07-07). ["Realtime Collaboration with Clojure"](https://www.youtube.com/watch?v=3QR8meTrh5g). *YouTube.com*.

1. **[^](#cite_ref-104)** Pither, Jon (2016-10-04). ["Clojure in London: Funding Circle – Lending some Clojure"](https://juxt.pro/blog/posts/clojure-in-fundingcircle.html). *JUXT.pro*.

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

1. **[^](#cite_ref-106)** ["Nubank adquire empresa norte-americana de tecnologia Cognitect"](https://valorinveste.globo.com/mercados/renda-variavel/empresas/noticia/2020/07/23/nubank-adquire-empresa-norte-americana-de-tecnologia-cognitect.ghtml). 23 July 2020.

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

1. **[^](#cite_ref-108)** Phillips, Marc (2015-07-14). ["Walmart Runs Clojure at Scale"](https://blog.cognitect.com/blog/2015/6/30/walmart-runs-clojure-at-scale). *Cognitect.com*.

1. **[^](#cite_ref-109)** ["Common-Metadata-Repository"](https://github.com/nasa/Common-Metadata-Repository). *GitHub*. Retrieved 2019-07-06.

1. **[^](#cite_ref-110)** Meier, Carin (2015-05-06). ["Creative computing with Clojure"](http://radar.oreilly.com/2015/05/creative-computing-with-clojure.html). *OReilly.com*.

1. **[^](#cite_ref-111)** ["Stack Overflow Developer Survey 2023"](https://survey.stackoverflow.co/2023/). *Stack Overflow*. Retrieved 2024-05-02.

1. **[^](#cite_ref-112)** Hickey, Rich (2009-05-04). ["Clojure 1.0"](https://clojure.blogspot.com/2009/05/clojure-10.html). *BlogSpot.com*.

1. **[^](#cite_ref-113)** Hickey, Rich (2009-12-31). ["Clojure 1.1 Release"](https://clojure.blogspot.com/2009/12/clojure-11-release.html). *BlogSpot.com*.

1. **[^](#cite_ref-114)** Hickey, Rich (2010-08-19). ["Clojure 1.2 Release"](https://groups.google.com/forum/#!topic/clojure/tXll-vxyJpc). *Google.com*.

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

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

1. **[^](#cite_ref-117)** Halloway, Stuart (2013-03-01). ["ANN: Clojure 1.5"](https://groups.google.com/forum/#!topic/clojure/kzF5O0Yfdhc). *Google.com*.

1. **[^](#cite_ref-118)** Halloway, Stuart (2013-03-10). ["Clojure 1.5.1"](https://groups.google.com/forum/#!topic/clojure/PDENUpc44lY). *Google.com*.

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

1. **[^](#cite_ref-120)** Miller, Alex (2016-01-19). ["Clojure 1.8 is now available"](https://clojure.org/news/2016/01/19/clojure18). *Clojure.org*.

1. **[^](#cite_ref-121)** Miller, Alex (2017-12-08). ["Clojure 1.9 is now available"](https://clojure.org/news/2017/12/08/clojure19). *Clojure.org*.

1. **[^](#cite_ref-122)** Miller, Alex (2018-12-17). ["Clojure 1.10 release"](https://clojure.org/news/2018/12/17/clojure110). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-10-1_123-0)** Miller, Alex (2019-06-06). ["Clojure 1.10.1 release"](https://clojure.org/news/2019/06/06/clojure1-10-1). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-10-2_124-0)** Miller, Alex (2021-01-26). ["Clojure 1.10.2 release"](https://clojure.org/news/2021/01/26/clojure1-10-2). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-10-3_125-0)** Miller, Alex (2021-03-04). ["Clojure 1.10.3 release"](https://clojure.org/news/2021/03/04/clojure1-10-3). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-11-0_126-0)** Miller, Alex (2022-03-22). ["Clojure 1.11.0 release"](https://clojure.org/news/2022/03/22/clojure-1-11-0). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-11-1_127-0)** Miller, Alex (2022-04-05). ["Clojure 1.11.1 release"](https://clojure.org/news/2022/04/05/clojure-1-11-1). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-11-2_128-0)** Miller, Alex (2024-03-08). ["Clojure 1.11.2 release"](https://clojure.org/news/2024/03/08/clojure-1-11-2). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-12-0_129-0)** Miller, Alex (2024-09-05). ["Clojure 1.12.0 release"](https://clojure.org/news/2024/09/05/clojure-1-12-0). *Clojure.org*.

1. **[^](#cite_ref-release/clojure1-12-1_130-0)** Miller, Alex (2025-06-02). ["Clojure 1.12.1 Released"](https://clojure.org/news/2025/06/02/clojure-1-12-1).

1. **[^](#cite_ref-release/clojure1-12-2_131-0)** Miller, Alex (2025-08-25). ["Clojure 1.12.2 Released"](https://clojure.org/news/2025/08/25/clojure-1-12-2).

1. **[^](#cite_ref-release/clojure1-12-3_132-0)** Miller, Alex (2025-09-25). ["Clojure 1.12.3 Released"](https://clojure.org/news/2025/09/25/clojure-1-12-3).

## Further reading

- Sotnikov, Dmitri (2020). [*Web Development with Clojure*](https://pragprog.com/titles/dswdcloj3/) (3rd ed.). [Pragmatic Bookshelf](/source/Pragmatic_Bookshelf). [ISBN](/source/ISBN_(identifier)) [978-1-68050-682-2](https://en.wikipedia.org/wiki/Special:BookSources/978-1-68050-682-2).

- Olsen, Russ (2018). [*Getting Clojure*](https://pragprog.com/titles/roclojure/). [Pragmatic Bookshelf](/source/Pragmatic_Bookshelf). [ISBN](/source/ISBN_(identifier)) [978-1-68050-300-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-68050-300-5).

- Miller, Alex; Halloway, Stuart; Bedra, Aaron (2018). [*Programming Clojure*](https://pragprog.com/titles/shcloj3/) (3rd ed.). [Pragmatic Bookshelf](/source/Pragmatic_Bookshelf). [ISBN](/source/ISBN_(identifier)) [978-1-68050-246-6](https://en.wikipedia.org/wiki/Special:BookSources/978-1-68050-246-6).

- Meier, Carin (2015). [*Living Clojure: An introduction and training plan for developers*](https://www.oreilly.com/library/view/living-clojure/9781491909270/) (1st ed.). [O'Reilly Media](/source/O'Reilly_Media). [ISBN](/source/ISBN_(identifier)) [978-1-491-90904-1](https://en.wikipedia.org/wiki/Special:BookSources/978-1-491-90904-1).

- Rathore, Amit; Avila, Francis (2015). *Clojure in Action* (2nd ed.). [Manning Publications](/source/Manning_Publications). [ISBN](/source/ISBN_(identifier)) [978-1-61729-152-4](https://en.wikipedia.org/wiki/Special:BookSources/978-1-61729-152-4).

- Higginbotham, Daniel (2015). [*Clojure for the Brave and True*](https://www.braveclojure.com/clojure-for-the-brave-and-true/). [No Starch Press](/source/No_Starch_Press). [ISBN](/source/ISBN_(identifier)) [978-1-59327-591-4](https://en.wikipedia.org/wiki/Special:BookSources/978-1-59327-591-4).

- Gamble, Julian (2015). [*Clojure Recipes*](http://www.informit.com/store/clojure-recipes-9780321927736). [Pearson Publishing](/source/Pearson_Publishing). [ISBN](/source/ISBN_(identifier)) [978-0-32192-773-6](https://en.wikipedia.org/wiki/Special:BookSources/978-0-32192-773-6).

- Vandgrift, Ben; Miller, Alex (2015). [*Clojure Applied*](https://pragprog.com/titles/vmclojeco/). [Pragmatic Bookshelf](/source/Pragmatic_Bookshelf). [ISBN](/source/ISBN_(identifier)) [978-1-68050-074-5](https://en.wikipedia.org/wiki/Special:BookSources/978-1-68050-074-5).

- Rochester, Eric (2015). [*Clojure Data Analysis Cookbook*](https://www.packtpub.com/application-development/clojure-data-analysis-cookbook-second-edition) (2nd ed.). [Packt Publishing](/source/Packt_Publishing). [ISBN](/source/ISBN_(identifier)) [978-1-78439-029-7](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78439-029-7).

- Fogus, Michael; Houser, Chris (2014). [*The Joy of Clojure*](https://web.archive.org/web/20181023083354/http://www.joyofclojure.com/) (2nd ed.). [Manning Publications](/source/Manning_Publications). [ISBN](/source/ISBN_(identifier)) [978-1-617291-41-8](https://en.wikipedia.org/wiki/Special:BookSources/978-1-617291-41-8). Archived from [the original](http://www.joyofclojure.com/) on 2018-10-23. Retrieved 2018-11-05.

- Kelker, Ryan (2013). [*Clojure for Domain-specific Languages*](https://www.packtpub.com/application-development/clojure-domain-specific-languages). [Packt Publishing](/source/Packt_Publishing). [ISBN](/source/ISBN_(identifier)) [978-1-78216-650-4](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78216-650-4).

- Rochester, Eric (2014). [*Mastering Clojure Data Analysis*](https://www.packtpub.com/big-data-and-business-intelligence/mastering-clojure-data-analysis). [Packt Publishing](/source/Packt_Publishing). [ISBN](/source/ISBN_(identifier)) [978-1-78328-413-9](https://en.wikipedia.org/wiki/Special:BookSources/978-1-78328-413-9).

- Emerick, Chas; Carper, Brian; Grand, Christophe (April 19, 2012). [*Clojure Programming*](http://www.clojurebook.com/). [O'Reilly Media](/source/O'Reilly_Media). [ISBN](/source/ISBN_(identifier)) [978-1-4493-9470-7](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4493-9470-7).

- VanderHart, Luke; Sierra, Stuart (June 7, 2010). [*Practical Clojure*](https://www.apress.com/us/book/9781430272311). [Apress](/source/Apress). [ISBN](/source/ISBN_(identifier)) [978-1-4302-7231-1](https://en.wikipedia.org/wiki/Special:BookSources/978-1-4302-7231-1).

## External links

- [Official website](https://clojure.org/)

v t e Lisp programming Features Automatic storage management Conditionals Dynamic typing Higher-order functions Linked lists Macros M-expressions (deprecated) Read–eval–print loop Recursion S-expressions Self-hosting compiler Tree data structures Object systems Common Lisp Object System (CLOS) CommonLoops Flavors Implementations Standardized Common Lisp Allegro Common Lisp Armed Bear Common Lisp (ABCL) CLISP Clozure CL CMU Common Lisp (CMUCL) Corman Common Lisp Embeddable Common Lisp (ECL) GNU Common Lisp (GCL) LispWorks Macintosh Common Lisp Mocl Movitz Poplog Steel Bank Common Lisp (SBCL) Symbolics Common Lisp Scheme History Bigloo Chez Scheme Chicken Gambit Game Oriented Assembly Lisp (GOAL) GNU Guile Ikarus JScheme Kawa MIT/GNU Scheme MultiLisp Pocket Scheme Racket (features) Scheme 48 SCM SIOD T TinyScheme ISLISP OpenLisp Unstandardized Logo MSWLogo NetLogo StarLogo UCBLogo POP COWSEL (POP-1) POP-2 POP-11 Arc AutoLISP BBN LISP Clojure Dylan (Apple, history) Emacs Lisp EuLisp Franz Lisp, PC-LISP Hy Interlisp Knowledge Engineering Environment *Lisp LeLisp LFE LISP 2 Lisp Machine Lisp Lispkit Lisp Maclisp MDL MLisp newLISP NIL PC-LISP Picolisp Portable Standard Lisp RPL S-1 Lisp SKILL Spice Lisp Zetalisp Operating system List Common Lisp Interface Manager, McCLIM Genera Scsh Hardware Lisp machine TI Explorer Space-cadet keyboard Community of practice Technical standards Scheme Requests for Implementation Common Lisp HyperSpec X3J13 Education Books Common Lisp the Language How to Design Programs (HTDP) On Lisp Practical Common Lisp Structure and Interpretation of Computer Programs (SICP) Curriculum ProgramByDesign Organizations Business Apple Computer Bolt, Beranek and Newman Harlequin Lucid Inc. Symbolics Xanalys Education Massachusetts Institute of Technology (MIT) MIT Computer Science and Artificial Intelligence Laboratory (CSAIL) Stanford Artificial Intelligence Laboratory University of California, Berkeley People Edmund Berkeley Daniel G. Bobrow William Clinger R. Kent Dybvig Matthias Felleisen Robert Bruce Findler Matthew Flatt Phyllis Fox Paul Graham Richard Greenblatt Timothy P. Hart Louis Hodes Mike Levin David Luckham John McCarthy Robert Tappan Morris Joel Moses David Park Steve Russell Richard Stallman Common Lisp Scott Fahlman Richard P. Gabriel Philip Greenspun (10th rule) David A. Moon Kent Pitman Guy L. Steele Jr. Daniel Weinreb Scheme Matthias Felleisen Shriram Krishnamurthi Guy L. Steele Jr. Gerald Jay Sussman Julie Sussman Logo Hal Abelson Denison Bollay Wally Feurzeig Brian Harvey Seymour Papert Mitchel Resnick Cynthia Solomon POP Rod Burstall Robin Popplestone Books Commons Categories: Language • Family

Timeline of Lisp dialects v t e 1958 1960 1965 1970 1975 1980 1985 1990 1995 2000 2005 2010 2015 2020 LISP 1, 1.5, LISP 2(abandoned) Maclisp Interlisp MDL Lisp Machine Lisp Scheme R5RS R6RS R7RS small NIL ZIL (Zork Implementation Language) Franz Lisp muLisp Common Lisp ANSI standard Le Lisp MIT Scheme XLISP T Chez Scheme Emacs Lisp AutoLISP PicoLisp Gambit EuLisp ISLISP OpenLisp PLT Scheme Racket newLISP GNU Guile Visual LISP Clojure Arc LFE Hy

v t e Java (software platform) Platforms Java ME (Micro) Java SE (Standard) Jakarta EE (Enterprise) Java Card Android SDK Technologies Sun/Oracle JDK OpenJDK JVM HotSpot Graal Maxine Squawk JavaFX Platform Applets Servlets MIDlets JSP JSF Web Start (JNLP) Pack200 Modules Major third-party ART Blackdown Eclipse GNU Classpath GWT Harmony Hibernate IcedTea Jazelle OpenJ9 Spring Struts TopLink WildFly History Java version history Java Community Process Sun Microsystems Free Java implementations Slogan: Write once, run anywhere Platform languages Java BeanShell Clojure Groovy JRuby Jython Kotlin Processing Rhino Scala Oxygene Community Conferences JavaOne Devoxx Organizations Apache Software Foundation Eclipse Foundation Java Community Process Oracle Corporation Sun Microsystems, Sun Microsystems Laboratories People James Gosling Arthur van Hoff Urs Hölzle Computer programming portal • Category

Authority control databases International GND National United States Israel Other Yale LUX

---
Adapted from the Wikipedia article [Clojure](https://en.wikipedia.org/wiki/Clojure) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Clojure?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
