common-lisp简单引用示例

示例

Quote是一种特殊的运算符,可防止评估其参数。它返回其参数,未被评估。

CL-USER> (quote a)
A

CL-USER> (let ((a 3))
           (quote a))
A