NOT Operator
Syntax: X = NOT EXP
The NOT operator is a unary operator that takes operators on the result
of the expression, variable or constant that follows. The NOT operator will
either produce a zero result if the input was non zero, or a one result if
the input was zero.
Example
PRINT NOT 1
|