RosettaCodeData/Task/Write-entire-file/Haskell/write-entire-file.hs

8 lines
174 B
Haskell
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
main :: IO ( )
main = do
putStrLn "Enter a string!"
str <- getLine
putStrLn "Where do you want to store this string ?"
myFile <- getLine
appendFile myFile str