# Do - While

Grammar — Do (Actions), while (Conditions) are true
FlagsSubFunctions | Action

Executes a While Loop. If the specified conditions are met, the action set will be run, and the conditions will be checked again. This will continue until the conditions are not met. If the conditions are not met the first time they are checked, nothing will happen and they will not be checked again.

Returns — void

do {
    #SUBFUNCS(Actions)
}while (#SUBFUNCS(Conditions," && "));

Category: General / Loops

# Examples

— None found —