Skip to content

Instantly share code, notes, and snippets.

@onlyshk
Created November 4, 2011 06:36
Show Gist options
  • Save onlyshk/1338791 to your computer and use it in GitHub Desktop.
Save onlyshk/1338791 to your computer and use it in GitHub Desktop.
Map and filter example
map (\x -> x * 2) [1,2,3,4,5]
-- Result :
[2,4,6,8,10]
filter even [1,2,3,4,5]
-- Result :
[2,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment