arch-wiki-md-repo
Version:
All arch-wiki articles in markdown format, updated every two days.
27 lines (16 loc) • 1.45 kB
Markdown
Common Lisp is a highly dynamic multi-paradigm language that emphasizes interactivity and performance.
* [1 Installation](
* [2 Quicklisp](
* [3 SLIME](
* [4 See also](
There are a variety of implementations to choose from. Three implementations available are [clisp](https://www.archlinux.org/packages/?name=clisp), [ecl](https://www.archlinux.org/packages/?name=ecl), and the particularly popular [sbcl](https://www.archlinux.org/packages/?name=sbcl).
SBCL features a highly optimized native code generating compiler with origins that date back to the early 90's. Known for its precise type derivation and its strict conformance to the ANSI standard, it is particularly suited for general purpose and scientific programming. On the other hand, both ECL and CLISP offer good C integration and embedability.
[](https://www.quicklisp.org/beta/) is a package manager written in common lisp for loading common lisp libraries. It works across all major common lisp implementations, and is the dominant choice for maintaining common lisp packages within the common lisp community.
For the interactive experience that Common Lisp is known for, see [slime](/index.php/Slime "Slime").
* [The Common Lisp Wiki](http://cliki.net)
* [Online Specification / Hyperspec](http://www.lispworks.com/documentation/HyperSpec/Front)