language keyword for loops
May be used inside for
or while
instructions to separate the loop
variable definition and the set of instructions.
i = 0 while i<5 do disp("i"); i = i + 1; end | ![]() | ![]() |
Version | Description |
6.0.0 | do is now protected:
Assignments like do=1 are no longer possible. |