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

5 lines
59 B
Text

b1 = -1
b2 = 0
PRINT b1 AND b2
PRINT b1 OR b2
PRINT NOT b1