1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/lang/picolisp/pkg-descr
Pietro Cerutti 7c937353d3 lang/picolisp: new port
PicoLisp is a minimal Lisp interpreter with a focus on simplicity.

https://picolisp.com
2024-03-06 10:54:29 +00:00

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.