lasp/examples/quote.lisp
2024-05-03 12:49:43 -05:00

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))