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

6 lines
59 B
Plaintext

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