mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
8 lines
116 B
Text
8 lines
116 B
Text
const bit01 := 0x01;
|
|
const bit02 := 0x02;
|
|
|
|
const bit03 := bit01 | bit02;
|
|
|
|
print(bit01);
|
|
print(bit02);
|
|
print(bit03);
|