小编Rog*_*ash的帖子

使用`list`或`append`实现cons

有没有通过任何方式cons可以在Common Lisp的使用来实现list,append,first,rest等?

在以下代码中

(defun my_list (&rest arguments)
   `(,@arguments) ; Line 1
)
Run Code Online (Sandbox Code Playgroud)

完整的第1行是什么意思?

lisp common-lisp

3
推荐指数
1
解决办法
1439
查看次数

标签 统计

common-lisp ×1

lisp ×1