論理和
論理式 "or" はフロー制御の分岐条件で使われます。
用例:
a=1
b=0
if a<>0
or
b<>0 then
print("ok")
else
print("none")
end if
and
,
not
および
xor
コマンドを参照してください。