我想创建一个nil函数,它接受任意数量的符号并将它们全部设置为nil.
(defun clean (as many args as given by user) (setq each-arg nil) ) (clean x y z)
怎么做'干净'?
lisp emacs function
emacs ×1
function ×1
lisp ×1