Skip to content

Instantly share code, notes, and snippets.

@mndrix
Created June 22, 2012 18:21
Show Gist options
  • Save mndrix/2974355 to your computer and use it in GitHub Desktop.
Save mndrix/2974355 to your computer and use it in GitHub Desktop.
map _ [] = []
map f (x:xs) = f x : map f xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment