論理排他和

論理式 "xor" はフロー制御の分岐条件で使われます。

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

and, or および not コマンドを参照してください。