Clojure
Paradigm | multi-paradigm: |
---|---|
Family | Lisp |
Designed by | Rich Hickey |
First appeared | 2007; 18 years ago (2007) |
Stable release | |
Typing discipline | |
Memory management | Garbage collection via a host (JVM, CLR, a JavaScript runtime such as V8 in case of ClojureScript or BEAM (see below) |
Platform | |
License | Eclipse Public |
Filename extensions |
|
Website | clojure |
Dialects | |
ClojureScript, ClojureDart | |
Influenced by | |
Influenced | |
|
Clojure (/ˈkloʊʒər/ , like closure)[17] [18] is a dynamic and functional dialect of the programming language Lisp on the Java platform.[19] [20]
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.[21] [17] Clojure's reader supports literal syntax for maps, sets, and vectors along with lists, and these are compiled to the mentioned structures directly.[21] Clojure treats code as data and has a Lisp macro system.[22] 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.[22]
Clojure advocates immutability and immutable data structures 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, programs that are simple and fast.[24] [25] [17] While its type system is entirely dynamic, recent efforts have also sought the implementation of a dependent type system.[26]
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.
History
[edit ]Rich Hickey is the creator of the Clojure language.[19] Before Clojure, he developed dotLisp
, a similar project based on the .NET platform,[27] and three earlier attempts to provide interoperability between Lisp and Java: a Java foreign language interface for Common Lisp (jfli
),[28] A Foreign Object Interface for Lisp (FOIL),[29] and a Lisp-friendly interface to Java Servlets (Lisplets).[30]
Hickey spent about two and a half years working on Clojure before releasing it publicly in October 2007,[31] 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.[18]
Design
[edit ]Rich Hickey developed Clojure because he wanted a modern Lisp for functional programming, symbiotic with the established Java platform, and designed for concurrency.[24] [25] [32] [17] 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.[33] [34] [35]
Clojure's approach to state 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, 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,[36] [17] and Clojure code can be called from Java, too.[37] The community uses tools such as Clojure command-line interface (CLI)[38] 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.[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.[39] Clojure supports multimethods [40] and for interface-like abstractions has a protocol [41] based polymorphism and data type system using records,[42] 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;[43] [44] [45] it is possible to do so explicitly by using the recur
keyword.[46] For parallel and concurrent programming Clojure provides software transactional memory,[47] a reactive agent system,[1] and channel-based concurrent programming.[48]
Clojure 1.7 introduced reader conditionals by allowing the embedding of Clojure, ClojureScript and ClojureCLR code in the same namespace.[49] [21] 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.[50] [51] [52]
Extensible Data Notation
[edit ]Extensible Data Notation, or edn,[53] 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
[edit ]The primary platform of Clojure is Java,[20] [36] but other target implementations exist. The most notable of these is ClojureScript,[54] which compiles to ECMAScript 3,[55] and ClojureCLR,[56] a full port on the .NET platform, interoperable with its ecosystem.
Other implementations of Clojure on different platforms include:
- Babashka,[57] Native Clojure scripting language leveraging GraalVM native image and Small Clojure Interpreter
- CljPerl,[58] Clojure on Perl
- ClojureDart,[59] Extend Clojure's reach to mobile & desktop apps by porting Clojure to Dart and Flutter
- Clojerl,[60] Clojure on BEAM, the Erlang virtual machine
- basilisp,[61] A Clojure-compatible(-ish) Lisp dialect targeting Python 3.8+
- ClojureRS,[62] Clojure on Rust
- Ferret,[63] compiles to self-contained C++11 that can run on microcontrollers
- jank,[64] Native Clojure hosted in C++ on an LLVM-based JIT
- Joker,[65] an interpreter and linter written in Go
- Las3r,[66] a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
- Pixie,[67] Clojure-inspired Lisp dialect written in RPython
- Rouge,[68] Clojure on YARV in Ruby
Tools
[edit ]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:[69]
- Emacs, with CIDER[70]
- IntelliJ IDEA, with Cursive[71] (a free license is available for non-commercial use)
- Sublime Text, with Clojure Sublimed,[72] or Tutkain,[73]
- Vim, with fireplace.vim,[74] [75] vim-elin,[76] or Conjure (Neovim only)[77] [78]
- Visual Studio Code, with Calva[79] or Clover[80]
- IDE-agnostic (using the Language Server Protocol for static analysis and/or linting): clj-kondo[81] or clojure-lsp[82]
In addition to the tools provided by the community, the official Clojure command-line interface (CLI) tools[38] have also become available on Linux, macOS, and Windows since Clojure 1.9.[83]
Development
[edit ]The development process is restricted to the Clojure core team, though issues are publicly visible at the Clojure JIRA project page.[84] Anyone can ask questions or submit issues and ideas at ask.clojure.org.[85] 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.[86] [87]
Impact
[edit ]With continued interest in functional programming, Clojure's adoption by software developers using the Java platform has continued to increase.[88] 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] Nubank,[109] Puppet,[110] and Walmart [111] as well as government agencies such as NASA.[112] It has also been used for creative computing, including visual art, music, games, and poetry.[113]
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.[114]
Release history
[edit ]Version | Release date | Major features, improvements |
---|---|---|
October 17, 2007 (2007年10月17日)[31] | Initial public release | |
1.0 | May 4, 2009 (2009年05月04日)[115] | First stable release |
1.1 | December 31, 2009 (2009年12月31日)[116] | Futures |
1.2 | August 19, 2010 (2010年08月19日)[117] | Protocols |
1.3 | September 23, 2011 (2011年09月23日)[118] | Enhanced primitive support |
1.4 | April 15, 2012 (2012年04月15日)[119] | Reader literals |
1.5 | March 1, 2013 (2013年03月01日)[120] | Reducers |
1.5.1 | March 10, 2013 (2013年03月10日)[121] | Fixing a memory leak |
1.6 | March 25, 2014 (2014年03月25日)[122] | Java API, improved hashing algorithms |
1.7 | June 30, 2015 (2015年06月30日)[49] | Transducers, reader conditionals |
1.8 | January 19, 2016 (2016年01月19日)[123] | Additional string functions, direct linking, socket server |
1.9 | December 8, 2017 (2017年12月08日)[124] | Integration with spec, command-line tools |
1.10 | December 17, 2018 (2018年12月17日)[125] | Improved error reporting, Java compatibility |
1.10.1 | June 6, 2019 (2019年06月06日)[126] | Working around a Java performance regression and improving error reporting from clojure.main
|
1.10.2 | January 26, 2021 (2021年01月26日)[127] | Java interoperability/compatibility improvements and other important language fixes |
1.10.3 | March 4, 2021 (2021年03月04日)[128] | prepl support for reader conditionals |
1.11.0 | March 22, 2022 (2022年03月22日)[129] | 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日)[130] | 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日)[131] | Fix for CVE-2024-22871 Denial of Service vulnerability |
Latest version: 1.12.0 | September 5, 2024 (2024年09月05日)[8] | Java method values, params type hints, array class syntax, add-lib , clojure.java.process
|
Legend: Old version Old version, still maintained Latest version Latest preview version Future version |
See also
[edit ]References
[edit ]- ^ a b "Agents and Asynchronous Actions". Clojure.org. Retrieved 2019年07月07日.
- ^ "Concurrent Programming". Clojure.org. Retrieved 2019年07月07日.
- ^ Hickey, Rich; contributors. "core.async". GitHub . Retrieved 2019年07月07日.
- ^ "Functional Programming". Clojure.org. Retrieved 2019年07月07日.
- ^ Nolen, David; Hickey, Rich. "core.logic". GitHub. Retrieved 2019年07月07日.
- ^ a b "Macros". Clojure.org. Retrieved 2019年07月07日.
- ^ Esterhazy, Paulus. "Threading Macros Guide". Clojure.org. Retrieved 2019年07月07日.
- ^ a b Miller, Alex (2024年09月05日). "Clojure 1.12.0 release". Clojure.org.
- ^ Fogus, Michael (2011). "Rich Hickey Q&A". CodeQuarterly.com. Archived from the original on 2017年01月11日.
- ^ Hickey, Rich (2011). "Simple Made Easy". YouTube.[better source needed ]
- ^ Bonnaire-Sergeant, Ambrose (2012). A Practical Optional Type System for Clojure (Thesis). The University of Western Australia.
- ^ "Clojure Programming" (PDF). OReilly.com. Retrieved 2013年04月30日.
- ^ Hickey, Rich. "Clojure Bookshelf". Amazon.com. Archived from the original on 2017年10月03日. Retrieved 2019年07月07日.
- ^ Rose, Calvin; contributors. "Janet Language". Janet-Lang.org. Retrieved 2023年02月18日.
- ^ Baldridge, Timothy. "Pixie". GitHub . Retrieved 2025年02月06日.
- ^ Ramachandra, Ramkumar. "Rhine". GitHub . Retrieved 2019年07月07日.
- ^ 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日.
- ^ a b Hickey, Rich (2009年01月05日). "meaning and pronunciation of Clojure". Google.com.
- ^ a b Krill, Paul (2012年03月22日). "Clojure inventor Hickey now aims for Android". InfoWorld.com.
- ^ a b "Clojure". Clojure.org. Retrieved 2019年07月07日.
- ^ a b c "The Reader". Clojure.org. Retrieved 2019年07月07日.
- ^ a b "Differences with other Lisps". Clojure.org. Retrieved 2019年07月07日.
- ^ a b c "Values and Change: Clojure's approach to Identity and State". Clojure.org. Retrieved 2019年07月07日.
- ^ a b Hickey, Rich. "Rationale". Clojure.org. Retrieved 2019年07月07日.
- ^ a b Torre, Charles (2009年10月06日). "Expert to Expert: Rich Hickey and Brian Beckman – Inside Clojure". MSDN.com.
- ^ "clojure/spec.alpha". GitHub . 2017年04月26日.
- ^ Hickey, Rich (2002年10月16日). "[ANN] dotLisp: A Lisp dialect for .Net". Google.com.
- ^ Hickey, Rich (2013年04月15日). "jfli". SourceForge.net.
- ^ Hickey, Rich (2013年04月03日). "foil: Foreign Object Interface for Lisp". SourceForge.net.
- ^ Hickey, Rich (2013年03月07日). "Lisplets". SourceForge.net.
- ^ a b 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.
- ^ Elmendorf, Dirk (2010年04月01日). "Economy Size Geek – Interview with Rich Hickey, Creator of Clojure". LinuxJournal.com.
- ^ "Simple Made Easy". InfoQ. Retrieved 2024年05月02日.
- ^ "(iterate think thoughts): Advantages of Data Oriented Programming". yogthos.net. Retrieved 2024年05月02日.
- ^ "talk-transcripts/Hickey_Rich/EffectivePrograms.md at master · matthiasn/talk-transcripts". GitHub. Retrieved 2024年05月02日.
- ^ a b "Hosted on the JVM". Clojure.org. Retrieved 2019年07月07日.
- ^ "Java Interop". Clojure.org. Retrieved 2019年07月07日.
- ^ a b Miller, Alex. "Deps and CLI Guide". Clojure.org. Retrieved 2019年07月08日.
- ^ Hickey, Rich. "edn". GitHub. Retrieved 2019年07月07日.
- ^ "Multimethods and Hierarchies". Clojure.org. Retrieved 2019年07月07日.
- ^ "Protocols". Clojure.org. Retrieved 2019年07月07日.
- ^ "Datatypes: deftype, defrecord and reify". Clojure.org. Retrieved 2019年07月07日.
- ^ Goetz, Brian (2014年11月20日). "Stewardship: the Sobering Parts". YouTube.com.
- ^ Rose, John (2007年07月12日). "tail calls in the VM". Oracle.com.
- ^ Rose, John (2009年02月11日). "Some languages need to be able to perform tail calls". Java.net.
- ^ "Special Forms". Clojure.org. Retrieved 2019年07月07日.
- ^ "Refs and Transactions". Clojure.org. Retrieved 2019年07月07日.
- ^ Hickey, Rich (2013年06月28日). "Clojure core.async Channels". Clojure.org.
- ^ a b Miller, Alex (2015年06月30日). "Clojure 1.7 is now available". Clojure.org.
- ^ Hickey, Rich (2014年09月17日). "Transducers". YouTube.com.
- ^ Hickey, Rich (2014年08月06日). "Transducers are Coming". Cognitect.com.
- ^ Hickey, Rich (2014年11月20日). "Inside Transducers". YouTube.com.
- ^ "Official EDN Spec". edn-format.org. 2022年04月27日.
- ^ "ClojureScript". ClojureScript.org. Retrieved 2019年07月06日.
- ^ "ClojureScript – FAQ (for JavaScript developers)". ClojureScript.org. Retrieved 2018年02月04日.
- ^ "ClojureCLR". GitHub. Retrieved 2012年06月28日.
- ^ Borkent, Michiel. "Babashka". Babashka.org. Retrieved 2019年08月19日.
- ^ Hu, Wei. "A Lisp on Perl". MetaCPAN.org. Retrieved 2019年07月06日.
- ^ "What is ClojureDart?", GitHub, Tensegritics, 2022年12月16日, retrieved 2022年12月16日
- ^ Facorro, Juan. "Clojerl". GitHub. Retrieved 2019年07月06日.
- ^ "basilisp". GitHub. Retrieved 2024年05月13日.
- ^ "ClojureRS". GitHub. Retrieved 2022年03月17日.
- ^ Akkaya, Nurullah. "Ferret". Ferret-Lang.org. Retrieved 2019年07月06日.
- ^ Wilkerson, Jeaye. "jank". Jank-Lang.org. Retrieved 2022年08月17日.
- ^ Bataev, Roman. "Joker". Joker-Lang.org. Retrieved 2019年07月06日.
- ^ Cannon, Aemon. "Laz3r". GitHub. Retrieved 2019年07月06日.
- ^ Baldridge, Timothy. "Pixie". GitHub. Retrieved 2025年02月06日.
- ^ Connor, Ashe. "Rouge". GitHub. Retrieved 2019年07月06日.
- ^ Miller, Alex (2019年02月04日). ""State of Clojure 2019" Results". Clojure.org.
- ^ Batsov, Bozhidar; contributors. "CIDER: The Clojure Interactive Development Environment that Rocks". CIDER.mx. Retrieved 2019年07月05日.
- ^ Fleming, Colin. "Cursive: Provides full Clojure and ClojureScript language support". JetBrains.com. Retrieved 2019年07月05日.
- ^ Prokopov, Nikita. "Clojure Sublimed". PackageControl.io. Retrieved 2023年02月18日.
- ^ Helenius, Eero. "Tutkain". FlowThing.me. Retrieved 2023年02月18日.
- ^ Pope, Tim. "fireplace.vim: Clojure REPL Support". VIM.org. Retrieved 2019年07月05日.
- ^ Monroe, Dominic (2016年12月13日). "Clojure and Vim: An overview – It's very possible". JUXT.pro.
- ^ 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日.
- ^ Caldwell, Oliver. "Neovim Clojure(Script) tooling over prepl". GitHub. Retrieved 2019年11月09日.
- ^ Caldwell, Oliver (2019年11月06日). "Getting started with Clojure, Neovim and Conjure in minutes". oli.me.uk.
- ^ Strömberg, Peter. "Calva: Clojure & ClojureScript Interactive Programming". VisualStudio.com. Retrieved 2019年07月05日.
- ^ Szabo, Maurício. "Clover". VisualStudio.com. Retrieved 2021年01月28日.
- ^ clj-kondo/clj-kondo, clj-kondo, 2024年04月30日, retrieved 2024年05月02日
- ^ "Overview - Clojure LSP". clojure-lsp.io. Retrieved 2024年05月02日.
- ^ Miller, Alex (2017年12月08日). "Clojure 1.9". Cognitect.com.
- ^ "Clojure". Atlassian.net. Retrieved 2019年07月07日.
- ^ "Clojure Forum". clojure.org. Retrieved 2020年03月20日.
- ^ Hickey, Rich (2018年11月26日). "Open Source is Not About You". GitHub.
- ^ "Workflow". Clojure.org. Retrieved 2019年07月07日.
- ^ Rinko, Marek (2023年10月18日). "Projection of Clojure in 2024". Flexiana. Retrieved 2025年03月27日.
- ^ Goetz, Brian (2020年05月24日). "Brian Goetz' favorite non-Java JVM language (Part 1 of 3)". Twitch.tv.
- ^ Goetz, Brian (2020年05月24日). "Brian Goetz' favorite non-Java JVM language (Part 2 of 3)". Twitch.tv.
- ^ Goetz, Brian (2020年05月24日). "Brian Goetz' favorite non-Java JVM language (Part 3 of 3)". Twitch.tv.
- ^ Evans, Eric (2018年08月14日). "Modelling Time: Eric Evans: Domain-Driven Design Europe 2018". YouTube.com.
- ^ Evans, Eric (2014年11月21日). "Eric Evans on Twitter". Twitter.com.
- ^ "James Gosling meetup with London Java Community". YouTube.com. 2016年10月11日.
- ^ Graham, Paul (2016年05月06日). "Paul Graham on Twitter". Twitter.com.
- ^ Martin, Robert (2019年08月22日). "Why Clojure?". CleanCoder.com.
- ^ Martin, Robert (2018年11月29日). "Unble Bob Martin on Twitter". Twitter.com.
- ^ Martin, Robert (2018年08月01日). "Introduction To Functional Programming". CleanCoders.com.
- ^ Martin, Robert (2017年07月11日). "Pragmatic Functional Programming". CleanCoder.com.
- ^ "Technology Radar | An opinionated guide to today's technology landscape". Thoughtworks. Retrieved 2024年05月20日.
- ^ "Technology Radar: Clojure". ThoughtWorks.com. Retrieved 2019年02月10日.
- ^ Maple, Simon; Binstock, Andrew (2018年10月17日). "JVM Ecosystem Report 2018". Snyk.io.
- ^ "Success Stories". Clojure.org. Retrieved 2018年10月27日.
- ^ Liutikov, Roman (2017年12月17日). "Roman Liutikov on Twitter". Twitter.com.
- ^ "Jobs at Apple". Apple.com. Retrieved 2019年07月06日.
- ^ Borges, Leonardo (2015年07月07日). "Realtime Collaboration with Clojure". YouTube.com.
- ^ Pither, Jon (2016年10月04日). "Clojure in London: Funding Circle – Lending some Clojure". JUXT.pro.
- ^ Williams, Alex (2014年08月03日). "The New Stack Makers: Adrian Cockcroft on Sun, Netflix, Clojure, Go, Docker and More". TheNewStack.io.
- ^ "Nubank adquire empresa norte-americana de tecnologia Cognitect". 23 July 2020.
- ^ Price, Chris (2014年04月11日). "A New Era of Application Services at Puppet Labs". Puppet.com. Retrieved 2020年08月06日.
- ^ Phillips, Marc (2015年07月14日). "Walmart Runs Clojure at Scale". Cognitect.com.
- ^ "Common-Metadata-Repository". GitHub. Retrieved 2019年07月06日.
- ^ Meier, Carin (2015年05月06日). "Creative computing with Clojure". OReilly.com.
- ^ "Stack Overflow Developer Survey 2023". Stack Overflow. Retrieved 2024年05月02日.
- ^ Hickey, Rich (2009年05月04日). "Clojure 1.0". BlogSpot.com.
- ^ Hickey, Rich (2009年12月31日). "Clojure 1.1 Release". BlogSpot.com.
- ^ Hickey, Rich (2010年08月19日). "Clojure 1.2 Release". Google.com.
- ^ Redinger, Christopher (2011年09月23日). "[ANN] Clojure 1.3 Released". Google.com.
- ^ Dipert, Alan (2012年04月17日). "[ANN] Clojure 1.4 Released". Google.com.
- ^ Halloway, Stuart (2013年03月01日). "ANN: Clojure 1.5". Google.com.
- ^ Halloway, Stuart (2013年03月10日). "Clojure 1.5.1". Google.com.
- ^ Miller, Alex (2014年03月25日). "[ANN] Clojure 1.6". Google.com.
- ^ Miller, Alex (2016年01月19日). "Clojure 1.8 is now available". Clojure.org.
- ^ Miller, Alex (2017年12月08日). "Clojure 1.9 is now available". Clojure.org.
- ^ Miller, Alex (2018年12月17日). "Clojure 1.10 release". Clojure.org.
- ^ Miller, Alex (2019年06月06日). "Clojure 1.10.1 release". Clojure.org.
- ^ Miller, Alex (2021年01月26日). "Clojure 1.10.2 release". Clojure.org.
- ^ Miller, Alex (2021年03月04日). "Clojure 1.10.3 release". Clojure.org.
- ^ Miller, Alex (2022年03月22日). "Clojure 1.11.0 release". Clojure.org.
- ^ Miller, Alex (2022年04月05日). "Clojure 1.11.1 release". Clojure.org.
- ^ Miller, Alex (2024年03月08日). "Clojure 1.11.2 release". Clojure.org.
Further reading
[edit ]- Sotnikov, Dmitri (2020). Web Development with Clojure (3rd ed.). Pragmatic Bookshelf. ISBN 978-1-68050-682-2.
- Olsen, Russ (2018). Getting Clojure. Pragmatic Bookshelf. ISBN 978-1-68050-300-5.
- Miller, Alex; Halloway, Stuart; Bedra, Aaron (2018). Programming Clojure (3rd ed.). Pragmatic Bookshelf. ISBN 978-1-68050-246-6.
- Meier, Carin (2015). Living Clojure: An introduction and training plan for developers (1st ed.). O'Reilly Media. ISBN 978-1-491-90904-1.
- Rathore, Amit; Avila, Francis (2015). Clojure in Action (2nd ed.). Manning Publications. ISBN 978-1-61729-152-4.
- Higginbotham, Daniel (2015). Clojure for the Brave and True. No Starch Press. ISBN 978-1-59327-591-4.
- Gamble, Julian (2015). Clojure Recipes. Pearson Publishing. ISBN 978-0-32192-773-6.
- Vandgrift, Ben; Miller, Alex (2015). Clojure Applied. Pragmatic Bookshelf. ISBN 978-1-68050-074-5.
- Rochester, Eric (2015). Clojure Data Analysis Cookbook (2nd ed.). Packt Publishing. ISBN 978-1-78439-029-7.
- Fogus, Michael; Houser, Chris (2014). The Joy of Clojure (2nd ed.). Manning Publications. ISBN 978-1-617291-41-8. Archived from the original on 2018年10月23日. Retrieved 2018年11月05日.
- Kelker, Ryan (2013). Clojure for Domain-specific Languages. Packt Publishing. ISBN 978-1-78216-650-4.
- Rochester, Eric (2014). Mastering Clojure Data Analysis. Packt Publishing. ISBN 978-1-78328-413-9.
- Emerick, Chas; Carper, Brian; Grand, Christophe (April 19, 2012). Clojure Programming. O'Reilly Media. ISBN 978-1-4493-9470-7.
- VanderHart, Luke; Sierra, Stuart (June 7, 2010). Practical Clojure. Apress. ISBN 978-1-4302-7231-1.
External links
[edit ]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 |
- 2007 software
- Cross-platform free software
- Cross-platform software
- Dynamic programming languages
- Dynamically typed programming languages
- Extensible syntax programming languages
- Functional languages
- High-level programming languages
- JVM programming languages
- Lisp (programming language)
- Lisp programming language family
- Multi-paradigm programming languages
- Programming languages
- Programming languages created in 2007
- Scripting languages
- Software using the Eclipse Public License
- Source-to-source compilers