articles/lisp.md: update

This commit is contained in:
tocariimaa 2025-02-12 00:52:04 -03:00
parent d974efb915
commit c3e3cd7b8d

View file

@ -15,10 +15,10 @@ A PDF of the original Lisp 1.5 manual can be found here: <https://www.lispmachin
enlightenment.
## Lisp languages in use
- Scheme: created by the hackers Guy Steele and Gerald Sussman in 1970 at the MIT. Has multiple implementations, Chez Scheme,
- [Scheme](scheme.md): created by the hackers Guy Steele and Gerald Sussman in 1970 at the MIT. Has multiple implementations, Chez Scheme,
Chicken Scheme, MIT/GNU Scheme, etc.
- Common Lisp: Big for Lisp standards (still better and smaller than "modern" languages), is also the most used Lisp today.
The main implementation is sbcl, a public domain JIT compiler.
- [Common Lisp](common_lisp.md): Big for Lisp standards (still better and smaller than "modern" languages), is also the most used Lisp today.
The main implementation is SBCL, a public domain JIT compiler.
- GNU Guille
- Clojure: based in the [JVM](jvm.md) (Java Virtual Machine), does not have `cons`, `car` or `cdr`.
- ...