mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
7c937353d3
PicoLisp is a minimal Lisp interpreter with a focus on simplicity. https://picolisp.com
8 lines
494 B
Plaintext
8 lines
494 B
Plaintext
PicoLisp is quite different from other Lisps. The main reason is its focus on
|
|
data. PicoLisp has one single internal data type: The "cell". On the language
|
|
level it has only three data types: Numbers, symbols and cons pairs. They are
|
|
all built from cells. What may sound like a restriction is actually a big
|
|
advantage. The simple internal structure results in high start-up and execution
|
|
speeds. Cells can be manipulated freely in any conceivable way, giving full
|
|
control to the programmer.
|