Returns True if any of left or right are true
||
op_Or(other)
table = {
a = true,
op_Or = function(other)
{
return table.a || other.a
}
}
o = {
a = false,
op_Or = function(other)
{
return o.a || other.a
}
}
b1 = table || other //Returns true