|
|
|
|
|
by ponzao
4531 days ago
|
|
`sum` does not accept a function as a parameter, the original example had an `foreach` instead of `sum`. list filter isEven foreach println
As a side note omitting that many commas and parenthesis is very rare at least based on the Scala projects I've worked on. The above example is equal to the one below: list.filter(isEven).foreach(println)
|
|
If you wanted to be really explicit you could do:
yuck ;-)