Bitwise operators
Left shift
Example
with console from std:io
var a = 20 << 2
console.out(a) //Output: 80Right shift
Example
with console from std:io
var a = 8 >> 2
console.out(a) //Output: 2Bitwise and
Example
Bitwise or
Example
Bitwise xor
Example
One's complement
Example
Last updated