# While
Grammar — While (Conditions) are true, do (Actions)
Flags —SubFunctions
|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
while (#SUBFUNCS(Conditions," && ")) {
#SUBFUNCS(Actions)
}
# Related
Category: General / Loops
- Repeat — macro
- Repeat Forever — macro
- For Each Real — macro
- For Each Real Deprecated — macro
- For Each Integer — macro
- For Each Integer Deprecated — macro
- Pick Each Integer — macro
- Pick Each Integer Deprecated — macro
- Picked Integer
- Picked Integer Deprecated —
int
— IntLoopCurrentDeprecated - While — macro
- Do - While — macro
# Examples
— None found —