8 lines
176 B
Text
8 lines
176 B
Text
120 b1 = false 'value of 0
|
|
130 b2 = not false 'value of -1
|
|
140 print b1 and b2
|
|
150 print b1 or b2
|
|
160 print b1 xor b2
|
|
170 print b1 eqv b2
|
|
180 print b1 imp b2
|
|
190 print not b2
|