EMA-XPS Online


NOT

NOT
===

syntax: (not <object>)

If the object has the value NIL, then T will be
returned, otherwise NIL.

example:       >(not nil)
               T
               >(not 3)
               NIL


EMA-XPS Online