Next: , Previous: , Up: Truth   [Contents][Index]


16.4.5.2 Null and Not

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.