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

    Or on a single line with spaces.

    print "@month\n";

    (The default value for $OUTPUT_FIELD_SEPARATOR is space.)

    Bill
Re^2: print array
by influx (Beadle) on Aug 22, 2012 at 20:58 UTC
    If say isn't available you can use 5.010 or just use feature 'say';

    If you just want a quick peek into an array, Data::Dumper is good for that or just print "$_\n" for @month