我在一本旧的通用 lisp 书中找到了代码,并在 lispworks 和 clozure cl 中尝试了它。但是他们俩都无法运行代码。此代码用于删除对:(author1 . john)
。
(setf q '((author1 . john) (author2 . tony) (author3 . fred)))
(setf (assoc 'author1 q) nil)
谢谢你的时间
我在一本旧的通用 lisp 书中找到了代码,并在 lispworks 和 clozure cl 中尝试了它。但是他们俩都无法运行代码。此代码用于删除对:(author1 . john)
。
(setf q '((author1 . john) (author2 . tony) (author3 . fred)))
(setf (assoc 'author1 q) nil)
谢谢你的时间