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

6 lines
98 B
Plaintext

b1 = true //value of 1
b2 = false //value of 0
print b1 and b2
print b1 or b2
print not b1