quote

AutoCad AutoLISP Functions

 
quote
 
 
 

Returns an expression without evaluating it

(quote expr)

Arguments

expr

An AutoLISP expression.

Return Values

The expr argument.

Examples

Command: (quote a)

A

The previous expression can also be written as 'a. For example:

Command: !'a

A

Command: (quote (a b))

(A B)

See Also