summaryrefslogtreecommitdiff
path: root/testsuite/tests/arityanal/prim.hs
blob: 5b91ad24f25485f87144bc53e6c8b3aaec5988dd (plain)
1
2
3
4
5
6
7
module Prim where

map2 f [] = []
map2 f (x:xs) = f x : map2 f xs

zipWith2 f [] [] = []
zipWith2 f (a:x) (b:y) = (f a b):zipWith2 f x y