the statement should look like this: ``` (a, b, c) -> a + b + c; ``` This is functionally equivalent to ``` (a, b, c) -> return a + b + c; done; ```
the statement should look like this:
This is functionally equivalent to