Next: If Special Operator, Previous: True and False, Up: Truth [Contents][Index]
Because ‘NIL’ plays two roles in Common List, the function null
, which
returns true of the empty list
> (null nil) T
and the function not
, which returns ‘true’ if its argument is false,
> (not nil) T
do exactly the same thing.