The given function and your use of "
" are correct, so the error must be elsewhere. Without knowing the details, I suspect that you are using (the equivalent of) print
rather than putStr
to print your string. Make sure that your string is not being show
n before it is printed.
If this is in GHCi, be aware that values are printed using print
, so
> onSeparateLines ["foo", "bar"]
will print
the string and show escaped characters. You want
> putStrLn (onSeparateLines ["foo", "bar"])
instead.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…