Skip to content
Turtle Kitty edited this page Aug 9, 2015 · 2 revisions

quote

This operator returns its argument unevaluated. Quote can be abbreviated by '.

(quote foo) -> foo
(quote "foo") -> "foo"
(quote $f) -> $f
(quote (1 2 3)) -> (1 2 3)
(quote (list 1 2 3)) -> (list 1 2 3)
'foo -> foo
'(1 2 3) -> (1 2 3)
Clone this wiki locally