quote
quote(g_expr) =>g_result
Description
Returns the name of the variable or the expression. This function is a prefix form of the ' operator. Quoting is used to prevent expressions from being evaluated.
Arguments
Value Returned
Examples
(quote a)
=> a
(quote (f a b))
=> (f a b)
Related Topics
Return to top