BOR

y = a BOR b

Bitwise OR.

Truth table:

a b a BOR b
0 0 0
0 1 1
1 0 1
1 1 1

See OR for logical or.

Example

print "1001 BOR 1110 = "; bin(0b1001 BOR 0b1100)
' Output: 1001 BOR 1110 = 1101
Language
If there is insufficient information on this page and you wish learn more about BOR, please send an email to smallbasic@gmail.com. You can help to improve information about BOR by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.