logical xor

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

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

参照: and, or , not