有没有通过任何方式cons可以在Common Lisp的使用来实现list,append,first,rest等?
cons
list
append
first
rest
在以下代码中
(defun my_list (&rest arguments) `(,@arguments) ; Line 1 )
完整的第1行是什么意思?
lisp common-lisp
common-lisp ×1
lisp ×1