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
in go, we can use _ for a better readability of a large integer, which is really useful in crypto using large amount often
_
const TotalSupply = 1_000_000_000
The text was updated successfully, but these errors were encountered:
Pretty integers and floats with _ #630 (#635)
60eeb9f
* chore(gnolang): handle integers with _ * chore(gnolang): handle floats with _ * chore: add tests
54d1778
Successfully merging a pull request may close this issue.
Description
in go, we can use
_
for a better readability of a large integer, which is really useful in crypto using large amount oftenThe text was updated successfully, but these errors were encountered: