====== BitXOR ====== BitXOR(, [, ]]) The function returns the bitwise XOR of the passed values. **Parameters** |< 100% 15% >| |value1|First value.| |value2|Second value.| |valueN|Third and other values.| **Related** [[bitand]], [[bitnot]], [[bitor]], [[bitshift]] **Remarks** Bitwise operations are performed as 32-bit integers. **Examples** MsgBox(BitXOR(1, 0)) # --> 1 MsgBox(BitXOR(1, 1)) # --> 0 MsgBox(BitXOR(2, 3, 6)) # --> 7