Skip to content

Instantly share code, notes, and snippets.

@curtiswilkinson
Last active December 31, 2017 04:06
Show Gist options
  • Save curtiswilkinson/ecabe6c66919c1dcad113a531bf7ed30 to your computer and use it in GitHub Desktop.
Save curtiswilkinson/ecabe6c66919c1dcad113a531bf7ed30 to your computer and use it in GitHub Desktop.
Sequenced putStrLn's
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