我在尝试:

import System.IO
saveArr = do
    outh <- openFile "test.txt" WriteMode
    hPutStrLn outh [1,2,3]
    hClose outh

但它不起作用......输出:



编辑
好的 hPrint 可以使用整数,但是数组中的浮点数呢? [1.0, 2.0, 3.0] ?

最佳答案

hPutStrLn 只能打印字符串。也许你想要 hPrint

hPrint outh [1,2,3]

关于list - 如何将列表写入文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2895748/

10-11 16:08