]> git.rmz.io Git - my-scheme.git/blob - app/Main.hs
Print the sum of two arguments
[my-scheme.git] / app / Main.hs
1 module Main where
2 import System.Environment
3
4 main :: IO ()
5 main = do
6 args <- getArgs
7 putStrLn (show (read (args !! 0) + read (args !! 1)))