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

6 lines
98 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
b1 = true //value of 1
b2 = false //value of 0
print b1 and b2
print b1 or b2
print not b1