in reply to Re: while modifier
in thread while modifier
A little explanation - do (essentially) says to treat the following block as a single statement. Thus, you can use statement modifiers like post-whiles and post-foreachs. Now, $y is very obviously scoped within the confines of the while-loop. It's the same concept for while-modifiers.my $x = 0; do { my $y = $x + 3; print "$x => $y\n"; $x++; } while ($x < 10);
------
We are the carpenters and bricklayers of the Information Age.
Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re:while modifier( and scoping)
by demerphq (Chancellor) on Sep 22, 2001 at 20:19 UTC |