in reply to Re: Re: while 's 'continue' block
in thread while 's 'continue' block
is the same asfor ($I = 1; $i < 10; $i++) { ... }
Personally, I like the symmetry it gives the language.$i = 1; while( $i < 10) { ... } continue { $i++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: while 's 'continue' block
by coreolyn (Parson) on Jan 05, 2001 at 05:53 UTC |