do-while
do { statement } while(expr);
Execute 'statment' until 'expr' evaulates to 0.
A 'break' in the 'statement' will terminate the loop. A
'continue' will continue the execution from the beginning of
the loop.
for(LPC), foreach(LPC), while(LPC), if(LPC), switch(LPC)