We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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)