Skip to content

Instantly share code, notes, and snippets.

Created January 17, 2016 17:24
Show Gist options
  • Save anonymous/f56d0bf71d37c606afdb to your computer and use it in GitHub Desktop.
Save anonymous/f56d0bf71d37c606afdb to your computer and use it in GitHub Desktop.
module Main where
import System.Environment
main :: IO ()
main = do
args <- getArgs
let num1 = read $ args !! 0
let num2 = read $ args !! 1
res <- num1 + num2
print res
main = do
args <- getArgs
print $ sum $ map read args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment