@array = qw(one two three four five six seven eight);
some command here
print @array;
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here are a few ways, in increasing order of dumbness: Using a slice:
Using
Using
Using
Using
I'm sure far better hackers than I can come up with even dumber ways. :) |
|||||||||||
|
|
As a comment to friedo's answer and to demonstrate cool new declaration
|
|||
|
|
|
I just realized you only need the last string, so no need to loop
Btw this is probably the least efficient way to do it, just having fun :) |
|||||||
|
print join("\n", @array[5..$#array]), $/;– Ashley Feb 27 '11 at 3:40