blob: 8f69b2ab41aba05bddbc724ca5333996bfd34eb6 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001NAME
2 do-while
3
4SYNTAX
5 do { statement } while(expr);
6
7DESCRIPTION
8 Execute 'statment' until 'expr' evaulates to 0.
9
10 A 'break' in the 'statement' will terminate the loop. A
11 'continue' will continue the execution from the beginning of
12 the loop.
13
14SEE ALSO
15 for(LPC), foreach(LPC), while(LPC), if(LPC), switch(LPC)