Created
December 31, 2017 04:09
-
-
Save curtiswilkinson/ef7d09ceb174d9851b730b4994dd68b4 to your computer and use it in GitHub Desktop.
Sequence take input + print input
This file contains 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
module Main where | |
import System.IO | |
main :: IO () | |
main = do | |
str <- getLine -- Takes a line from console | |
putStrLn str -- Print the value we get |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment