elm/exercises/accumulate/Accumulate.example

6 lines
119 B
Text

module Accumulate (..) where
accumulate : (a -> b) -> List a -> List b
accumulate func input =
List.map func input