compiler/test/test_bit_ops.code
2010-02-14 23:12:38 -08:00

5 lines
64 B
Text

a = 4 | 7 # 7
b = 4 ^ 7 # 3
c = 4 & 7 # 4
exitcode = a - b - c