ID:265675
 
Just a question. Does binary work in DM?
There is no notation, but there are bitwise operators.

& AND
| OR
^ XOR
~ NOT

All bitwise operations are 16-bit. In other words, 0xFFFF is the max, and 0x0000 is the min.

Edit:

<< Bit-shift Left
Bit-shift Right

Thanks, Popisfizzy.
In response to Yota
You forgot bitshifting.