rempve some unused files
[ghc-hetmet.git] / ghc / misc / examples / io / io015 / Main.hs
diff --git a/ghc/misc/examples/io/io015/Main.hs b/ghc/misc/examples/io/io015/Main.hs
deleted file mode 100644 (file)
index 37f0cc1..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-import IO -- 1.3
-
-main =
-    isEOF >>= \ eof ->
-    if eof then 
-       return ()
-    else
-       getChar >>= \ c ->
-        putChar c >>
-        main