Fix precedence of % operator
It previously had the same precedence as + and -.
This commit is contained in:
@@ -10,5 +10,8 @@ IO.print(-4.2 % -3.1) // expect: -1.1
|
||||
// Left associative.
|
||||
IO.print(13 % 7 % 4) // expect: 2
|
||||
|
||||
// Precedence.
|
||||
IO.print(13 + 1 % 7) // expect: 14
|
||||
|
||||
// TODO: Unsupported RHS types.
|
||||
// TODO: Error on mod by zero.
|
||||
|
||||
Reference in New Issue
Block a user