From 9447a85a2fe0e9f77d0541bed8575ee72bae9842 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Sun, 2 Mar 2025 14:13:42 -0300 Subject: [PATCH] articles/lisp.md: update article --- articles/lisp.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/articles/lisp.md b/articles/lisp.md index 2550af4..743c28d 100644 --- a/articles/lisp.md +++ b/articles/lisp.md @@ -96,10 +96,11 @@ you're seeing the source encoded in a tree, directly by using S-Expressions. But (* (/ (+ (* 20 2) 16) 30) 5) ``` -## Lisp languages in use +## Lisp languages - [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. +- Dylan: dynamic, most notably it has a ALGOL-style syntax more similar to modern languages instead of a S-Expression-based syntax. - 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. - ...