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
let i = 123 $"\\u{i:X4}" # val it: string = "\u007B"
However it produces \u%P(X4) in 4.0.0-alpha-020...
\u%P(X4)
4.0.0-alpha-020
The text was updated successfully, but these errors were encountered:
workaround:
(sprintf "%4X" i).Replace(" ", "0")
printf in fable_modules works well.
printf
fable_modules
Sorry, something went wrong.
FYI: This looks to be failing in Fable JS as well, please submit an issue to https://github.com/fable-compiler/Fable
No branches or pull requests
However it produces
\u%P(X4)
in4.0.0-alpha-020
...The text was updated successfully, but these errors were encountered: