Last active
December 31, 2017 04:06
-
-
Save curtiswilkinson/ecabe6c66919c1dcad113a531bf7ed30 to your computer and use it in GitHub Desktop.
Sequenced putStrLn's
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 -- <- this is the magic right here | |
putStrLn "This prints first" | |
putStrLn "This prints second" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment