本文介绍了如何打印表格或换行符之类的特殊字符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
[m@green09 ~]$ ghci
GHCi, version 7.6.3: http://www.haskell.org/ghc/ :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Prelude> print "asdf"
"asdf"
Prelude> print "\tasdf"
"\tasdf"
Prelude>
太棒了.太棒了.
如何打印列表或换行符?
How to print a tabulation or newline?
推荐答案
您只需这样做.
> putStrLn "a\tb"
a b
这篇关于如何打印表格或换行符之类的特殊字符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!