2 lines
129 B
Common Lisp
2 lines
129 B
Common Lisp
(defmethod car* ((arg t)) ;; can just be written (defmethod car* (arg) ...)
|
|
(error "CAR*: ~s is neither a cons nor nil" arg))
|