In the previous example, we didn't end up needing the parentheses, because they did not affect the meaning of the statement. However, they are often necessary in more complex expression, like the one below.
In C:
plus(a, take(b, c));
In Haskell this becomes:
(plus a (take b c))
-- or equivale...