I am confused about the rules for operator precedence in Haskell.
More specifically, why is this:
*Main> 2 * 3 `mod` 2
0
different than this?
*Main> 2 * mod 3 2
2
|
I am confused about the rules for operator precedence in Haskell.
different than this?
|
|||
|
|
|
Function calls bind the tightest, and so
is the same as
Keep in mind that Now, when
|
|||
|
|
|
2*3 = 6 and then |
|||
|
|