(if '(nil nil)
'print-true
'print-false)
(if '(nil)
'print-true
'print-false)
In the code above, why does the Lisp interpreter always evaluate these forms to true (print-true). I thought nil
represented false in Common Lisp.
I am using GNU CLISP.
nil
is false. Anything else is true.'(nil)
is a list with one element, namelynil
.'(nil nil)
is a list with two elements, namelynil
andnil
. Neither of these expressions is the same asnil
by itself, soif
sees it as true.