lasp/examples/quote.lisp

4 lines
166 B
Common Lisp
Raw Permalink Normal View History

2024-05-03 12:49:43 -05:00
; 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))