number1
number2
Reports the value of the bitwise or comparison on the inputs.
Examples: 1 bitor 2 returns 3. This statement is executed in binary form as 0001 or 0010 which returns 0011.
1 bitor 2
0001 or 0010
0011
Related commands: bitand bitnot bitxor