From 10f4d1b35d045a8543a4d2510aa54db92546d76b Mon Sep 17 00:00:00 2001 From: Justin Grimes Date: Thu, 19 Jul 2012 16:56:01 -0400 Subject: [PATCH] Was still using deprecated System module. Changed to System.Environment --- Copy.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Copy.hs b/Copy.hs index dc0ca0b..552eb76 100644 --- a/Copy.hs +++ b/Copy.hs @@ -1,5 +1,5 @@ module Main where -import System +import System.Environment main = do [file1, file2] <- getArgs -- read the first two arguments passed in