Bit.bor
From ComputerCraft Wiki
Revision as of 10:34, 28 February 2012 by 194.54.155.190 (Talk)
Explanation
All bit operations operate in Binary numeral system [1].
So if you understand the basics than OR is simple:
01001011 (75)
OR
00011000 (24)
=
01011011 (91)
Bits are OR`red sequentially.