2.6 循环结构对象
(#1=(a) b #1#)((a) b (a))(prog1 nil
(setq x '(#1=(a) b #1#)))
(eq (nth 0 x) (nth 2 x))
⇒ t
(setq x '((a) b (a)))
(eq (nth 0 x) (nth 2 x))
⇒ nil#1=(#1#)(prog1 nil
(setq x '#1=(a #1#)))
(eq x (cadr x))
⇒ t最后更新于
(#1=(a) b #1#)((a) b (a))(prog1 nil
(setq x '(#1=(a) b #1#)))
(eq (nth 0 x) (nth 2 x))
⇒ t
(setq x '((a) b (a)))
(eq (nth 0 x) (nth 2 x))
⇒ nil#1=(#1#)(prog1 nil
(setq x '#1=(a #1#)))
(eq x (cadr x))
⇒ t最后更新于