ldmud/doc/LPC/while
Lars f84a2fc7a0 Initial import from PRCS.
git-svn-id: svn://svn.bearnip.com/ldmud/trunk@4 56160b6e-f8f8-0310-bd54-bccebfe6a2f2
2005-06-21 01:46:13 +00:00

15 lines
362 B
Text

NAME
while
SYNTAX
while (expr) statement;
DESCRIPTION
While 'expr' evaluates to non 0, execute statement.
A 'break' in the 'statement' will terminate the loop. A
'continue' will continue the execution from the beginning of
the loop.
SEE ALSO
for(LPC), foreach(LPC), do-while(LPC), if(LPC), switch(LPC)