FreeBASIC - Bitwise operators
We have more of the bitwise operators, using the bitwise operator we can set or determine the specific bit in whole numbers.FreeBASIC
Other pieces of example codes:2 shl 2
x = &Hf and &Hff
x = 8 shr 1
x = 1 or 2
x = not(32 shr 2)
x = 123 xor 25
Bitwise operators in another programming language: