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
0
Current behaviour is
julia> str = """ x = 3.f0 y = 3f0 """; julia> print(format_text(str)) x = 3.f0 y = 3f0
I think the desired behaviour (following #61 and #83) is to output like the repl:
julia> 3.f0 3.0f0 julia> 3f0 3.0f0 julia> 30f0 30.0f0
The text was updated successfully, but these errors were encountered:
fix #286
ba86d7d
Add leading/trailing 0 for Float32 literals, similar to how we do it for other Float literals
ba44cee
No branches or pull requests
Current behaviour is
I think the desired behaviour (following #61 and #83) is to output like the repl:
The text was updated successfully, but these errors were encountered: