RosettaCodeData/Task/Logical-operations/BASIC/logical-operations-2.basic
2017-09-25 22:28:19 +02:00

6 lines
72 B
Text

a = true
b = false
print a and b
print a or b
print a xor b
print not a