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
for
Hi, I wish to suggest the use of c-style for loop.
For example:
for mut i := 0; i < 10; i++ { }
It can also do something like this:
mut i := 0; for ; i < 10; i++ { }
or have multiple instances:
for mut i := 0, mut x := 10; i < 10, x < 100; i++, x *= 2 { }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I wish to suggest the use of c-style
for
loop.For example:
It can also do something like this:
or have multiple instances:
The text was updated successfully, but these errors were encountered: