EndWhile
EndWhile
Use in conjunction with While to create a loop. The code between While and EndWhile will repeat while condition is true.
Note that the condition is evaluated at the start of the loop and therefore at the start of each iteration.
Example
Let>x=0
While>x<10
Let>x=x+1
MessageModal>x
EndWhile