RosettaCodeData/Task/Null-object/Common-Lisp/null-object-3.lisp

3 lines
129 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defmethod car* ((arg t)) ;; can just be written (defmethod car* (arg) ...)
(error "CAR*: ~s is neither a cons nor nil" arg))