elm/exercises/accumulate/Accumulate.example

7 lines
119 B
Text
Raw Normal View History

module Accumulate (..) where
2015-09-12 20:38:29 +00:00
accumulate : (a -> b) -> List a -> List b
accumulate func input =
List.map func input