Quote

(quote argument) -> argument

Using quote (also seen as the apostrophe) returns the given argument without evaluating it.

Examples:

>> (quote (string? a))
:: (string? a)
>> '(string? a)
:: (string? a)

See Also: quasiquote