logical xor

Logical expression "xor" used as flow control condition.

Example:
a=1 :b=0
if a=0 xor b=0 then
    print("ok")
else
    print("no")
end if

See also and, or and not commands.