XOR

Result = Expression XOR Expression

Computes the logical exclusive or of two expressions.

Example :

PRINT TRUE XOR FALSE
=> True

PRINT TRUE XOR TRUE
=> False

PRINT 7 XOR 11
=> 12


Referenced by :