Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
      my $month = shift;
      return $months{$month};
    }
    
  2. or download this
    print get_month_number('July');
    
  3. or download this
    my %months;
    for my $language (keys %month_names) {
    ...
      my $month = lc shift;
      return $months{$month};
    }