[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / deSugar / ds005.hs
diff --git a/ghc/compiler/tests/deSugar/ds005.hs b/ghc/compiler/tests/deSugar/ds005.hs
new file mode 100644 (file)
index 0000000..505d500
--- /dev/null
@@ -0,0 +1,15 @@
+--!!! ds005 -- mappairs from SLPJ Ch 5'
+--
+-- this simply tests a "typical" example
+
+module MapPairs where
+
+-- from SLPJ, p 78
+mappairs f []     ys     = []
+mappairs f (x:xs) []     = []
+mappairs f (x:xs) (y:ys) = f x y : mappairs f xs ys
+
+-- from p 80
+mappairs' f []     ys     = []
+mappairs' f x      []     = []
+mappairs' f (x:xs) (y:ys) = f x y : mappairs' f xs ys