我不知道发生了什么.
(setf x '((a b) (c) (1 2 3))) x ;;=> ((A B) (C) (1 2 3)) (mapcan #'cdr x) ;;=> (B 2 3) x ;;=> ((A B 2 3) (C) (1 2 3))
任何人都可以教我吗?谢谢.
lisp common-lisp
common-lisp ×1
lisp ×1