Help for this page

Select Code to Download


  1. or download this
    { 
       my $mn = 3;  
    ...
     
       print $month, "\n"; 
    }
    
  2. or download this
    BEGIN {
      my @month_names = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
    +);
    ...
        $month_names[$number];
      }
    }