RosettaCodeData/Task/Logical-operations/BASIC256/logical-operations.basic
2023-07-01 13:44:08 -04: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