Clojure

From Wikipedia, the free encyclopedia
Clojure
Paradigmmulti-paradigm:
FamilyLisp
Designed byRich Hickey
First appeared2007; 17 years ago (2007)
Stable release
1.11.1[8] / 5 April 2022; 23 months ago (2022-04-05)
Typing discipline
Platform
LicenseEclipse Public
Filename extensions
  • .clj
  • .cljs
  • .cljr
  • .cljc
  • .edn
Websiteclojure.org
Influenced by
Influenced

Clojure (/ˈklʒər/, like closure)[16][17] is a dynamic and functional dialect of the Lisp programming language on the Java platform.[18][19]

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

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

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, creator of Clojure

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

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

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.[23][24][31][16]

Clojure's approach to state is characterized by the concept of identities,[22] which are represented as a series of immutable states over time. Since states are immutable values, any number of workers can operate on them in parallel, and concurrency becomes a question of managing changes from one state to another. For this purpose, Clojure provides several mutable reference types, each having well-defined semantics for the transition between states.[22]

Clojure runs on the Java platform and as a result, integrates with Java and fully supports calling Java code from Clojure,[32][16] 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.[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.[35] Clojure supports multimethods[36] and for interface-like abstractions has a protocol[37] based polymorphism and data type system using records,[38] 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;[39][40][41] it is possible to do so explicitly by using the recur keyword.[42] For parallel and concurrent programming Clojure provides software transactional memory,[43] a reactive agent system,[1] and channel-based concurrent programming.[44]

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

Extensible Data Notation[edit]

Extensible Data Notation, or edn,[49] 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,[19][32] but other target implementations exist. The most notable of these is ClojureScript,[50] which compiles to ECMAScript 3,[51] and ClojureCLR,[52] a full port on the .NET platform, interoperable with its ecosystem.

Other implementations of Clojure on different platforms include:

  • Babashka,[53] Native Clojure scripting language leveraging GraalVM native image and Small Clojure Interpreter
  • CljPerl,[54] Clojure on Perl
  • ClojureDart,[55] Extend Clojure's reach to mobile & desktop apps by porting Clojure to Dart and Flutter
  • Clojerl,[56] Clojure on BEAM, the Erlang virtual machine
  • clojure-py,[57] Clojure in pure Python
  • ClojureRS,[58] Clojure on Rust
  • Ferret,[59] compiles to self-contained C++11 that can run on microcontrollers
  • jank,[60] Native Clojure hosted in C++ on an LLVM-based JIT
  • Joker,[61] an interpreter and linter written in Go
  • Las3r,[62] a subset of Clojure that runs on the ActionScript Virtual Machine (the Adobe Flash Player platform)
  • Pixie,[63] Clojure-inspired Lisp dialect written in RPython
  • Rouge,[64] 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:[65]

In addition to the tools provided by the community, the official Clojure command-line interface (CLI) tools[34] have also become available on Linux, macOS, and Windows since Clojure 1.9.[77]

Development[edit]

The development process is restricted to the Clojure core team, though issues are publicly visible at the Clojure JIRA project page.[78] Anyone can ask questions or submit issues and ideas at ask.clojure.org.[79] 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.[80][81]

Impact[edit]

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

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".[95] Clojure is used in industry by firms[96] such as Apple,[97][98] Atlassian,[99] Funding Circle,[100] Netflix,[101] Nubank,[102] Puppet,[103] and Walmart[104] as well as government agencies such as NASA.[105] It has also been used for creative computing, including visual art, music, games, and poetry.[106]

Release history[edit]

Version Release date Major features, improvements
October 17, 2007 (2007-10-17)[30] Initial public release
1.0 May 4, 2009 (2009-05-04)[107] First stable release
1.1 December 31, 2009 (2009-12-31)[108] Futures
1.2 August 19, 2010 (2010-08-19)[109] Protocols
1.3 September 23, 2011 (2011-09-23)[110] Enhanced primitive support
1.4 April 15, 2012 (2012-04-15)[111] Reader literals
1.5 March 1, 2013 (2013-03-01)[112] Reducers
1.5.1 March 10, 2013 (2013-03-10)[113] Fixing a memory leak
1.6 March 25, 2014 (2014-03-25)[114] Java API, improved hashing algorithms
1.7 June 30, 2015 (2015-06-30)[45] Transducers, reader conditionals
1.8 January 19, 2016 (2016-01-19)[115] Additional string functions, direct linking, socket server
1.9 December 8, 2017 (2017-12-08)[116] Integration with spec, command-line tools
1.10 December 17, 2018 (2018-12-17)[117] Improved error reporting, Java compatibility
1.10.1 June 6, 2019 (2019-06-06)[118] Working around a Java performance regression and improving error reporting from clojure.main
1.10.2 January 26, 2021 (2021-01-26)[119] Java interoperability/compatibility improvements and other important language fixes
1.10.3 March 4, 2021 (2021-03-04)[120] prepl support for reader conditionals
1.11.0 March 22, 2022 (2022-03-22)[8] New syntax for keyword argument invocation, new clojure.math namespace, namespace aliasing without loading, and new helper functions added to clojure.core
Current stable version: 1.11.1 April 5, 2022 (2022-04-05)[121] Rolling back unintended change in binary serialisation of objects of types clojure.lang.Keyword and clojure.lang.ArraySeq.
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future release

See also[edit]

References[edit]

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

Further reading[edit]

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
 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
 Chialisp