I have an array of scalars. I want to run a loop like this
my @workers = qw ( a b c );
my $MAXCHILD = 20;
foreach my $i( 0 .. $MAXCHILD){
run_job($i,$workers[$i++]);
}
Can I do this ?
I have an array of scalars. I want to run a loop like this
my @workers = qw ( a b c );
my $MAXCHILD = 20;
foreach my $i( 0 .. $MAXCHILD){
run_job($i,$workers[$i++]);
}
Can I do this ?