in reply to Re^2: Use of uninitialized value in concatenation (.) or string
in thread Use of uninitialized value in concatenation (.) or string
Something like this is almost always wrong in Perl (almost always doesn't mean always, it just means almost:
for ($i=0;$i<=$#steps;$i++){}
my @steps = (..list of some stuff.....); foreach my $step (@steps) { ..use $step...here... no $i index needed.. }
|
|---|