polserver/testsuite/escript/bitop/bitop003.src
2015-12-19 02:31:08 +01:00

7 lines
No EOL
104 B
Text

const bit01 := 0x01;
const bitNot01 := ~ (bit01);
print(bit01);
print(bitNot01);
print(Hex(bitNot01));