Home / lang / xor 
XOR
Syntax
Result = Expression XOR Expression

Computes the logical exclusive or of two expressions.

Example
PRINT TRUE XOR FALSE

True
Example
PRINT TRUE XOR TRUE

False
Example
PRINT 7 XOR 11

12


See also
Logical Operators