A DO WHILE loop will continue to loop unless the WHILE-part is met. This makes it easy to run forever and eat up all time from one CPU core.
DO WHILE expression:
END.
expression is any combination of boolean logic, comparisons, variables, fields etc that evaluates to a true value.
/* This is...