Elm has a special syntax for lambda expressions or anonymous functions:
\arguments -> returnedValue
For example, as seen in List.filter:
> List.filter (\num -> num > 1) [1,2,3]
[2,3] : List number
More to the depth, a backward slash, \, is used to mark the beginning of lambda ex...