4 lines
166 B
Common Lisp
4 lines
166 B
Common Lisp
|
; typical lisps support '() as shorthand for (quote ())
|
||
|
; this lisp will not. Both from a practical standpoint and an idealogical one.
|
||
|
(' (1 2 3 4))
|
||
|
(quote (1 2 3 4))
|