n = bit.bor (a, b, ...)
This takes one or more arguments. All are converted to signed 'long long' (64-bit integers). The result is all arguments "or-ed" together bitwise. eg. print (bit.bor (1, 2, 8)) --> 11
print (bit.bor (1, 2, 8)) --> 11