Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my @numbers = ('1','2','3','4','5'); NUMBER: foreach my $number(@numbers){ eval { next_loop(); } } sub next_loop { next NUMBER; }
my @numbers = ('1','2','3','4','5'); NUMBER: foreach my $number(@numbers){ next NUMBER; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: loop labels and script dying
by liz (Monsignor) on Sep 03, 2003 at 13:06 UTC | |
|
Re: loop labels and script dying
by dragonchild (Archbishop) on Sep 03, 2003 at 13:07 UTC | |
|
Re: loop labels and script dying
by ChrisS (Monk) on Sep 03, 2003 at 13:08 UTC | |
by dragonchild (Archbishop) on Sep 03, 2003 at 13:14 UTC |