NAME
	while - the while statement

DESCRIPTION
	while(expr) statement;

	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.

EXAMPLE

	i = 0;
	while ( i < 10 ) {
	  write( i+" ");
	  i += 1;
	}

	Would give the following output:

	0 1 2 3 4 5 6 7 8 9 

SEE ALSO
	do, for, foreach

Help topics available:
C_vs_LPC Lesson1 README arrays block
class3 class4 class1 class2 control_structures
for foreach function inheritance keywords
learn_lpc/ lfuns lpc_standardized mappings operators
preprocessor profezzorn_has_the_word switch things_not_to_do types
virtual while

[START|BACK ]




[ NannyMuds main page | FAQ | Contact us ]

You are guest number 120 since December 2019.
This file was last modified: June 2000.