in reply to Re: Does perl 5.8.2 have a bug with 'redo' statement
in thread Does perl 5.8.2 have a bug with 'redo' statement
while( my $line = <FH> ) { REDO: chomp( $line ); if( $line =~ /^#/ ) { goto REDO; } print "Doesn't begin with #\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Does perl 5.8.2 have a bug with 'redo' statement
by Mubby (Initiate) on May 21, 2010 at 18:48 UTC |