| List of expression elements / Logical operators | |
The NOT operator performs a logical negation to invert a boolean expression.
NOT bool-expr
The NOT operator is typically used to invert the value of a boolean expression.
If the operand is NULL, the negation expression evaluates to NULL.
MAIN
IF NOT ( 256 == 257 ) THEN
DISPLAY "This line should display"
END IF
END MAIN