Created
August 19, 2016 19:43
-
-
Save dflima/edf2f285e90dfe98d3d61047f81fb886 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| solveMeFirst a b = a + b | |
| main = do | |
| val1 <- readLn | |
| val2 <- readLn | |
| let sum = solveMeFirst val1 val2 | |
| print sum |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment