Bitwise OR
bitor expression1 expression2
(bitor expression1 expression2 expression3 ...)
expression1 | expression2
Bitwise OR of integer values of expressions at the instruction's input.
Example:
print bitor 7 3
print 8 | 3
Output:
7
11
See also:
|= - "in place" bitwise OR
Table of Content