RosettaCodeData/Task/Logical-operations/BASIC/logical-operations-2.basic

7 lines
72 B
Plaintext

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