logical or
Logical expression "or" used as flow control condition.
Example:
a=1
b=0
if a<>0
or
b<>0 then
print("ok")
else
print("none")
end if
See also
and
,
not
and
xor
commands.