| |||
| Home > RealView Debugger Keywords > Alphabetical keyword reference > continue | |||
Causes the next iteration of a loop to be executed, ignoring any remaining commands in the loop.
The continue statement causes the remainder of
the for, do-while,
or while loop to be ignored and the next iteration
of the loop to execute.
See the example on Example to see how to use continue in a for loop.