Help for this page

Select Code to Download


  1. or download this
    @monthname = qw(Jan Feb Mar Apr May Jun Jul ...);
  2. or download this
    my $thismonth = (localtime)[4];
    my $lastmonth = ($thismonth == 0)? 11 : $thismonth-1;
    print $monthname[$lastmonth], "\n";