From 647e3041abfe314b36cdeebb4fe414946b21d933 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Fri, 14 Feb 2025 12:37:39 -0300 Subject: [PATCH] articles/lisp.md: update --- articles/lisp.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/articles/lisp.md b/articles/lisp.md index e2de221..f276655 100644 --- a/articles/lisp.md +++ b/articles/lisp.md @@ -81,8 +81,10 @@ you're seeing the source encoded in a tree, directly by using S-Expressions. But ## Lisp languages in use - [Scheme](scheme.md): created by the hackers Guy Steele and Gerald Sussman in 1975 at the MIT. +- [PicoLisp](https://picolisp.com/wiki/?home): another minimalistic Lisp, internally uses only cells. - [Common Lisp](common_lisp.md): Big for Lisp standards (still better and smaller than "modern" languages), is also the most used Lisp today. -- Clojure: based in the [JVM](jvm.md) (Java Virtual Machine), does not have `cons`, `car` or `cdr`. +- Clojure: runs on the [JVM](jvm.md) (Java Virtual Machine), does not have `cons`, `car` or `cdr`. Basically [Java](java.md) +under a Lisp skin. - ... ## Examples