-
Notifications
You must be signed in to change notification settings - Fork 6
[Feature] Do while #100
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Add support for
do whileloops from end to end.The loop executes its body at least once and repeats while the condition is true.
Example
do { // loop body } while (condition);Benefits