(not argument)
The function not returns T if argument is nil; otherwise, it returns nil.
Examples
: (not 12)
nil
: (not "abc")
: (not nil)
T