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
Describe the bug When a loop's counter variable is passed to a function, the first value passed becomes the value for all subsequent passes.
To Reproduce Run the following code:
ise output (i) { sọpé i; } fún (jeki i = 1; i <= 3; jeki i = i + 1;) { output(i); }
prints out
1 1 1
Expected behavior The actual values get passed to the function, so it prints out
1 2 3
The text was updated successfully, but these errors were encountered:
Thanks bro, found the bug. Will be making a PR to close the issue. More catches in the future
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When a loop's counter variable is passed to a function, the first value passed becomes the value for all subsequent passes.
To Reproduce
Run the following code:
prints out
Expected behavior
The actual values get passed to the function, so it prints out
The text was updated successfully, but these errors were encountered: