haskell putStr 输出额外的换行符
main = do
file_name <- getLine
text <- readFile file_name
let b = prepare $ line text
let x = sth b
mapM_ (putStr . print_matrix . fst ) x
当我运行这段代码时,我得到:
1 2 3
4 5 6
7 8 9
9 2 1
1 1 1
1 1 1
但是在随机行中我得到了额外的换行符。当我写 300 行时,我得到了 2 个额外的随机换行符。
9 2 1
(额外输入)
1 1 1
1 1 1
main = do
file_name <- getLine
text <- readFile file_name
let b = prepare $ line text
let x = sth b
mapM_ (putStr . print_matrix . fst ) x
When I ran this code I got:
1 2 3
4 5 6
7 8 9
9 2 1
1 1 1
1 1 1
But in random lines I got extra newlines. When I wrote 300 lines I got 2 extra random newlines.
9 2 1
(extra enter)
1 1 1
1 1 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很确定
putStr
正在打印从文件中读取的换行符,除非prepare
或sth
正在将它们删除。I'm pretty sure
putStr
is printing the newlines read in from the file, unlessprepare
orsth
is chopping them off.