Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道要测试符号是否代表 lisp 中的宏的预测是什么吗?
您可以使用宏功能:
CL-USER> (defmacro foo () ''foo) FOO CL-USER> (defun bar () 'bar) BAR CL-USER> (macro-function 'foo) #<Compiled-function FOO Macroexpander #x187F0026> CL-USER> (macro-function 'bar) NIL