-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
[Feature] Implement do ... while
loop statement
#271
Closed
2 of 6 tasks
Comments
2 tasks
ByteWolf-dev
added a commit
that referenced
this issue
Jul 1, 2024
Implemented by #533. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing proposal for this?
This feature does not exist in the latest version
Proposal
Implement JS-like do-while-loop statements, which allow the repetitive execution of a block of code as long as a specific boolean condition is met after the first block execution. The syntax and behaviour should be exactly the same as in the JS implementation and follow the guidelines/docs of MDN do-while-loops.
Exact behaviour / changes you want
do
andwhile
.The text was updated successfully, but these errors were encountered: