in reply to Re^2: Parsing a file to print multiple times
in thread Parsing a file to print multiple times
my @nums = 1 .. 10; my $start = 3; my $end = 5; my $go = 0; for my $num ( @nums ){ ... if( $go ){ print "$num\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Parsing a file to print multiple times
by ExperimentsWithPerl (Acolyte) on Sep 26, 2015 at 10:21 UTC | |
by ExperimentsWithPerl (Acolyte) on Sep 29, 2015 at 11:31 UTC |