not

(not argument)

The function not returns T if argument is nil; otherwise, it returns nil.

Examples

: (not 12)

nil

: (not "abc")

nil

: (not nil)

T