RosettaCodeData/Task/Logical-operations/Yabasic/logical-operations.basic
2023-07-01 13:44:08 -04:00

5 lines
98 B
Text

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