- or download this
grep { print } @array;
- or download this
use List::MoreUtils qw<first>;
first { not print } @array;
- or download this
print shift @array while @array;
- or download this
my @r;@r = reverse @array and do { print pop @r while @r };
# Now I'm just being silly!