本文讲解如何编译defun。在Common Lisp中,defun用于定义函数。例如,下列的代码定义了函数foo (defun foo (a) "一个名为FOO的函数" (declare (ignorable a)) (…
分类:lisp
Autolisp替换列表中的元素
(defun subst#(n o lst / x) (if lst (cons &nb…
本文讲解如何编译defun。在Common Lisp中,defun用于定义函数。例如,下列的代码定义了函数foo (defun foo (a) "一个名为FOO的函数" (declare (ignorable a)) (…
(defun subst#(n o lst / x) (if lst (cons &nb…