문제

While preparing the Frege equivalents for the Real-world Haskell code examples (chapter 2), I could not find the equivalent for

:type readFile

What would be the closest match?

도움이 되었습니까?

해결책

It seems you will have to use openReader :: String -> IO BufferedReader function along with getLines :: BufferedReader -> IO [String] function. Then you can just combine the list of string into a single string.

다른 팁

Ok, I made this

readFile :: String -> IO [String]
readFile fileName = do
    file <- openReader fileName
    file.getLines

(This wouldn't be displayed nicely as a comment, so I made it an answer)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top