Allegro Common Lisp is a programming language created in 1986 by John Foderaro.
#2386on PLDB | 37Years Old |
(defun foo (x)
(loop for y in-sequence x collect (1+ y)))
(foo '(1 2 3)) => (2 3 4)
(foo #(1 2 3)) => (2 3 4)
Feature | Supported | Token | Example |
---|---|---|---|
Lispy | ✓ |