将putStrLn的输出写入文本文件

时间:2016-03-25 20:48:01

标签: haskell io ghc

在Haskell。有没有办法从putStrln(ghc / ghci)编写输出,例如:

putStrLn(printf $"这是一个示例字符串")

writeFile" example.txt" $" [来自putStrLn的输出]"

1 个答案:

答案 0 :(得分:3)

当然,请勿致电putStrLn

writeFile "example.txt" $ printf $ "this is a example string"

当然,对于此示例,首先不需要printf

writeFile "example.txt" "this is a example string"