[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / array / should_run / arr012.hs
diff --git a/ghc/tests/array/should_run/arr012.hs b/ghc/tests/array/should_run/arr012.hs
deleted file mode 100644 (file)
index 895efac..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 (fmap (toUpper) a1) >>
- print (ixmap (3,8) (+1) a1)
-
-
-
-