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
Any number greater than 4 characters should use _ for separation.
_
// bad let num = 10000000 // good let num = 10_000_000
The text was updated successfully, but these errors were encountered:
Good idea!
Sorry, something went wrong.
Maybe it should validate that the _ are separating blocks of 3 digits as well?
Example from the docs:
let oneMillion = 1_000_000 let justOverOneMillion = 1_000_000.000_000_1
No branches or pull requests
Any number greater than 4 characters should use
_
for separation.The text was updated successfully, but these errors were encountered: