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
Reproducer: https://play.opendylan.org/shared/d085b8e00fe79ab9
iterate loop (a = #f, b = 1) if (b == 3) b else loop(b, b + 1) end end
The above compiles without error if loop(b, b + 1) is changed to loop(a, b + 1).
loop(b, b + 1)
loop(a, b + 1)
The text was updated successfully, but these errors were encountered:
This might be a duplicate of #1461.
Sorry, something went wrong.
Fix loop merge bookkeeping (#1622)
ba2348e
Fixes: #1461, #1523
Fixed by #1622.
Successfully merging a pull request may close this issue.
Reproducer: https://play.opendylan.org/shared/d085b8e00fe79ab9
The above compiles without error if
loop(b, b + 1)
is changed toloop(a, b + 1)
.The text was updated successfully, but these errors were encountered: