logical not

フロー制御の条件に用いられる論理演算子not

例:
-- 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

参照: and, or, xor