NOT

Returns 1 if a is not the same as b.

Syntax

 a NOT b 

Arguments

None

Example

 'a' IS NOT 'b'  → returns 1 
 'a' IS NOT 'a'  → returns 0 
 4 IS NOT 2+2    → returns 0