in reply to Re: Print array values
in thread Print array values

If the array doesn't change size,
my $i = 0; while ($i < @filename) { ... ++$i; }
is a weird way of doing
for my $i (0..$#filename) { ... }