Kilo LISP is a programming language created in 2019 by Nils M Holm.
#2109on PLDB | 5Years Old |
Kilo LISP is a small interpreter for purely symbolic LISP. Its source consists of 25K bytes of comprehensible code (20KB C, 5KB LISP) and it runs in 64K bytes of memory. None the less it offers: lexical scoping, tail call elimination, macros, quasiquotation, variable-argument functions, constant-space garbage collection, image files, keyboard interrupt handling
((a . b) . c)
(a . (b . c))
((a . b) . (c . d))