in reply to Perl 6 will make amends (was:Perl's Bad Ideas)
in thread Perl's Bad Ideas
# For example while (my $el = pop @els){ # Body of loop } # Is it equivelant to this? { my $el = pop @els; { # Body of loop } } # Or this? { my $el = pop @els; # Body of loop }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Perl 6 will make amends (was:Perl's Bad Ideas)
by TheDamian (Vicar) on Apr 07, 2002 at 21:24 UTC | |
by shotgunefx (Parson) on Apr 07, 2002 at 21:35 UTC | |
by TheDamian (Vicar) on Apr 07, 2002 at 21:50 UTC | |
by shotgunefx (Parson) on Apr 07, 2002 at 22:12 UTC | |
by TheDamian (Vicar) on Apr 10, 2002 at 00:20 UTC | |
|