in reply to print array
... and, unless you want to print the list of months on a single line, without spaces, you may want to print (or, with a recent Perl, say) thru a for/foreach loop:
...(your lines 1 - 4)... for my $month(@month) { say $month; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: print array
by BillKSmith (Monsignor) on Aug 22, 2012 at 19:50 UTC | |
|
Re^2: print array
by influx (Beadle) on Aug 22, 2012 at 20:58 UTC |