晕了晕了,不是说顶多4重运算么?
怎么会出现这个?
 - ;;; FIRST - first element of the list
- (defun first (x) (car x))
- ;;; REST - the rest of the list
- (defun rest (x) (cdr x))
- ;;; Other readable accessors, the element or nil, better than nth
- (defun second (lst) (cadr lst))
- (defun third (lst) (caddr lst))
- (defun fourth (lst) (cadddr lst))
- (defun fifth (lst) (car (cddddr lst)))
- ;|#- SMALL|;
- (defun sixth (lst) (cadr (cddddr lst)))
- (defun seventh (lst)(caddr (cddddr lst)))
- (defun eighth (lst) (cadddr (cddddr lst)))
- (defun ninth (lst) (car (cddddr (cddddr lst))))
- (defun tenth (lst) (car (cdr (cddddr (cddddr lst)))))
- ;|END #- SMALL|;
|