summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci.debugger/Test3.hs
blob: fc66e943da76501fce5964a89b8e8289333893b7 (plain)
1
2
3
4
mymap f [] = []
mymap f (x:xs) = f x:mymap f xs

main = mapM_ putStrLn $ mymap ('a':) ["hello","bye"]