forked from Galleondragon/qb64
-
Notifications
You must be signed in to change notification settings - Fork 24
XOR (boolean)
Cory Smith edited this page Sep 2, 2022
·
4 revisions
XOR (boolean) evaluates two conditions and if either of them is True then it returns True, if both of them are True then it returns False, if both of them are False then it returns False.
condition [XOR (boolean)](XOR-(boolean)) condition2
- Either condition or condition2 must be True for the evaluation to return True.
- It is called "exclusive OR" because the conditions cannot both be True for it to return True like the OR (boolean) evaluation.
- condition and condition2 can themselves contain XOR evaluations.
Dilemma...
True = NOT False
AndersWon = True
PeterWon = True
IF AndersWon = True XOR PeterWon = True THEN
PRINT "Thank you for your honesty!"
ELSE
PRINT "You can't both have won (or lost)!"
END IF
You can't both have won (or lost)!