RosettaCodeData/Task/Logical-operations/BASIC256/logical-operations.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