[project @ 2001-08-22 12:24:41 by simonmar]
[ghc-hetmet.git] / ghc / tests / array / should_run / arr005.hs
diff --git a/ghc/tests/array/should_run/arr005.hs b/ghc/tests/array/should_run/arr005.hs
deleted file mode 100644 (file)
index 62ed12c..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
--- !!! Array - recurrences
--- 
--- array does not evaluate the elements.
---
-import Array
-
-main =
- let 
-  a1 = array (1,100) ((1,1::Integer):[(i,i*a1!(i-1))|i<-[2..100]])
- in
- print a1
-
---
-
-
-