772 B
772 B
Files
Basic IO
readFile
readFile :: FilePath -> IO Text
writeFile
writeFile :: FilePath -> Text -> IO ()
appendFile
appendFile :: FilePath -> Text -> IO ()
Console
getLine
getLine :: IO Text
getContents
getContents :: IO Text
interact
interact :: (Text -> Text) -> IO ()
File Handles
data IOMode
= ReadMode
| WriteMode
| AppendMode
| ReadWriteMode
openFile
openFile :: FilePath -> IOMode -> IO Handle
withFile
withFile :: FilePath -> IOMode -> (Handle -> IO r) -> IO r