in reply to Re^2: Array - Reading frame problem
in thread Array - Reading frame problem

You just need to learn more of the basics of perl syntax. There are lots of ways to do whatever you want with any subset of array elements:
print "$_\n" for ( @array[1..$#array] ); # which is the same as: for my $i ( 1 .. $#array ) { print "$array[$i]\n"; } # and $" = "\n"; print "@array[1..$#array]\n";