all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
map (>5) [1..10] -- [False,False,False,False,False,True,True,True,True,True]
|
||||
|
||||
map (++ "s") ["Apple", "Orange", "Mango", "Pear"] -- ["Apples","Oranges","Mangos","Pears"]
|
||||
|
||||
foldr (+) 0 [1..10] -- prints 55
|
||||
|
||||
traverse :: [a] -> [a]
|
||||
traverse list = map func list
|
||||
where func a = -- ...do something with a
|
||||
Loading…
Add table
Add a link
Reference in a new issue