Computes the remainder of division left / right
%=
op_SelfModulus(other)
table = {
a = 9,
op_SelfModulus = function(other)
{
table.a = table.a % other.a
return table
}
}
o = {
a = 5,
op_SelfModulus = function(other)
{
o.a = o.a % other.a
return o
}
}
table %= other //table.a == 4