quote

(quote term)

The quote function returns an expression without evaluating it.

Use the function when you want the Lisp Interpreter to treat the term literally.

Note: You can use the single quote symbol (') as a shortcut for the function.

Examples

: (setq x (quote (1 2)))

(1 2)

: (setq x '(1 2))

(1 2)