Lua:bOr
Jump to navigation
Jump to search
bOr(int1, int2) : Binary Or
-- 1 | 2 print( bOr(1,2) ) -- 3 or print( 1 | 2 ) -- 3 0001 0010 ----- 0011