Fixed operator precedence in example (#7912)

The order of operations was incorrect for the right-hand side of the `assert` statement on line 3199, based on the operator precedence for line 3197.
This commit is contained in:
Chris McIntyre
2018-06-01 08:24:49 -07:00
committed by Varriount
parent 3acedd4cd9
commit 8557a2e1a5

View File

@@ -3196,7 +3196,7 @@ notation. (Thus an operator can have more than two parameters):
# Multiply and add
result = a * b + c
assert `*+`(3, 4, 6) == `*`(a, `+`(b, c))
assert `*+`(3, 4, 6) == `+`(`*`(a, b), c)
Export marker