Common LISP Hints: Booleans and Conditionals
LISP uses the self-evaluating symbol nil to mean false. Anything other than nil means true. ... The LISP case statement is like a C switch statement: > (setq x 'b) B > (case x (a 5) ((d e) 7) ...
www.n-a-n-o.com |