logical not

Logical expression "not" used as flow control condition.

Example:
-- if you set n<>0 not statement will return false in if branch
n=2
if not n then
    print("n=not")
else
    print("n<>not")
end if

See also and, or, and xor commands.