We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
localeEncoding
Due to the terminal's localeEncoding,it may occurs error like:
ghci> uprint "🥰" "*** Exception: <stdout>: hPutChar: invalid argument (invalid character)
For this,the solution is set localeEncoding to utf-8,refering to System.IO.
utf-8
It would be better to add these annotation in the document.
I'd like to offer a PR in the later.
Related Post:https://discourse.haskell.org/t/solved-what-the-range-of-characters-that-putstrln-support/8305?u=wendaolee
The text was updated successfully, but these errors were encountered:
Add solution of error due to the localeEncoding in the document
26b6302
Solve:nushio3#4
No branches or pull requests
Due to the terminal's
localeEncoding
,it may occurs error like:For this,the solution is set
localeEncoding
toutf-8
,refering to System.IO.It would be better to add these annotation in the document.
I'd like to offer a PR in the later.
Related Post:https://discourse.haskell.org/t/solved-what-the-range-of-characters-that-putstrln-support/8305?u=wendaolee
The text was updated successfully, but these errors were encountered: