RosettaCodeData/Task/Logical-operations/BASIC256/logical-operations.basic

7 lines
72 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a = true
b = false
print a and b
print a or b
print a xor b
print not a