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
A suggested addition to Basic Data Types -> floats (or maybe its own sub-section)
Basic Data Types -> floats
An extended example with two operators of the same precedence, e.g.
5.0 * 3.0 mod 10.0 is evaluated as (5.0 * 3.0) mod 10.0 because multiplication and modulus have the same precedence level
5.0 * 3.0 mod 10.0
(5.0 * 3.0) mod 10.0
It might help to include a reference to Precedence Levels at https://nim-lang.org/docs/manual.html#syntax-precedence
Precedence Levels
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A suggested addition to
Basic Data Types -> floats
(or maybe its own sub-section)
An extended example with two operators of the same precedence, e.g.
5.0 * 3.0 mod 10.0
is evaluated as
(5.0 * 3.0) mod 10.0
because multiplication and modulus have the same precedence level
It might help to include a reference to
Precedence Levels
at https://nim-lang.org/docs/manual.html#syntax-precedenceThe text was updated successfully, but these errors were encountered: