in reply to Re: through an array in reverse
in thread through an array in reverse
OK, but let’s not forget the reverse function:
#! perl use strict; use warnings; my @j = ('a' .. 'g'); print join("\n", reverse @j);
;-)
Athanasius <°(((>< contra mundum
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: through an array in reverse
by blue_cowdawg (Monsignor) on Aug 06, 2012 at 17:48 UTC |