NOT
Syntax NOT expression 
! expression 
 
Explanation NOT reports TRUE if its input is false; otherwise it reports FALSE.
Examples NOT "FALSE 
Result: TRUE 
NOT "TRUE 
Result: FALSE 
NOT NUMBER? "A 
Result: TRUE 
IF NOT (3 = 3) THEN PRINT "YES
 

TopIndex