Open juniskane opened 6 months ago
Operator %= calculated different values than ordinary modulus operator:
a=1e20 a % 47 18 a %= 47 print a -36
Also add division-by-zero check to /= and %= operators.
Operator %= calculated different values than ordinary modulus operator:
a=1e20 a % 47 18 a %= 47 print a -36
Also add division-by-zero check to /= and %= operators.