Skip to content

Instantly share code, notes, and snippets.

@curtiswilkinson
Created December 31, 2017 04:09
Show Gist options
  • Save curtiswilkinson/ef7d09ceb174d9851b730b4994dd68b4 to your computer and use it in GitHub Desktop.
Save curtiswilkinson/ef7d09ceb174d9851b730b4994dd68b4 to your computer and use it in GitHub Desktop.
Sequence take input + print input
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