質問

Further to my first question on the management of the unicode characters in the production of .exe file, this is also a bug in GHC?

> print "Frère"
"Fr\233re"
役に立ちましたか?

解決

print x is equivalent to putStrLn (show x), where show converts a type of the Show class to a string representation.

In your case, x already has the String type. One might think that the String implementation of show would simply return its argument unchanged, but actually it transforms it into an ASCII string literal token with the same syntax as used in Haskell source code. This is done by surrounding it with quotes and by escaping 'special' characters (basically whatever is not on your keyboard).

So, this is not a bug but rather the expected behavior of print. If you want to output your string directly, use putStrLn instead.

他のヒント

Try

> putStrLn "Frère"
Frère      
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top