Last active
December 31, 2017 04:39
-
-
Save curtiswilkinson/07780ec294dc9ccd670711de7d3e61e1 to your computer and use it in GitHub Desktop.
Together, with feeling
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 | |
putStrLn "What would you like to call your file?" | |
filename <- getLine | |
putStrLn "What would you like inside your file?" | |
content <- getLine | |
writeFile filename content |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment