Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 有人知道如何在 Haskell 中生成网格吗?
我想知道 Haskell 中是否有一个函数,它允许您从列表列表(例如 [[1,2],[3,4]] )转到更具可读性的内容,例如:
[[1,2]
[3,4]]
谢谢!
您可以使用该unlines函数从行列表中获取单个字符串。您可以从[[Int]]using获取字符串列表map show。您可以使用 将其打印到屏幕上putStr。一起,您将获得:
unlines
[[Int]]
map show
putStr
putStr . unlines $ map show [[1, 2], [3, 4]]
打印:
[1,2] [3,4]