RosettaCodeData/Task/Write-entire-file/Haskell/write-entire-file.hs
2023-07-01 13:44:08 -04:00

7 lines
174 B
Haskell

main :: IO ( )
main = do
putStrLn "Enter a string!"
str <- getLine
putStrLn "Where do you want to store this string ?"
myFile <- getLine
appendFile myFile str