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

Computes the logical exclusive or of two expressions.

Examples

PRINT TRUE XOR FALSE
<hr>True
PRINT TRUE XOR TRUE
<hr>False
PRINT 7 XOR 11
<hr>12

See also

Logical Operators