Closed technoblogy closed 4 years ago
Example:
(defun test (n) (cond ((oddp n) n) ((list n))))
(test 2) gives an error. Workaround: include a t for the final clause:
(defun test (n) (cond ((oddp n) n) (t (list n))))
Example:
(test 2) gives an error. Workaround: include a t for the final clause: