]> git.rmz.io Git - my-scheme.git/blobdiff - app/Main.hs
Import the Parsec library
[my-scheme.git] / app / Main.hs
index c0766c1faa3645d237fed54bc0e83d3dbcdd4d08..2740935ca44f24d9121b6d9464c61c4b633b8121 100644 (file)
@@ -1,7 +1,8 @@
 module Main where
+import Text.ParserCombinators.Parsec
 import System.Environment
 
 main :: IO ()
 main = do
-    args <- getArgs
-    putStrLn ("Hello, " ++ args !! 0)
+    args <- getLine
+    putStrLn (args)