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

7 lines
72 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
a = true
b = false
print a and b
print a or b
print a xor b
print not a