This is an old revision of the document!
<- CRPL reference <- Logical Operators
Arguments | Result | Notation |
---|---|---|
Two items on the stack | The conditional XOR of the two arguments | b1 b2 – b3 |
Pops two items from the stack, treats them as boolean values, 'xors' (exclusive or) them, and pushes 0 or 1 back to the stack.
If both items are TRUE, 0 is pushed to the stack. If both items are FALSE, 0 is pushed to the stack. If one item is TRUE and the other is FALSE, 1 is pushed to the stack.
TRUE TRUE Trace #prints out 0 (FALSE) to the tracelog TRUE FALSE Trace #prints out 1 (TRUE) to the tracelog FALSE TRUE Trace #prints out 1 (TRUE) to the tracelog FALSE FALSE Trace #prints out 0 (FALSE) to the tracelog