[project @ 1997-12-19 12:22:57 by simonm]
[ghc-hetmet.git] / ghc / lib / tests / Array / arr012 / Main.hs
diff --git a/ghc/lib/tests/Array/arr012/Main.hs b/ghc/lib/tests/Array/arr012/Main.hs
deleted file mode 100644 (file)
index 61dc0bf..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
--- Array map operations
--- 
---
-module Main(main) where
-
-import Array
-import Char
-
-main = 
- let 
-  a1 = array (0,10) (zip [0..10] ['a'..'z'])
- in
- print a1 >>
- print (map (toUpper) a1) >>
- print (ixmap (3,8) (+1) a1)
-
-
-
-