Help for this page

Select Code to Download


  1. or download this
        my @months = (undef, qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct No
    +v Dec/);
    
  2. or download this
        sub get_days {
            my ($mon) = @_;
            ...;
        }
    
  3. or download this
        my @months = (
            undef,
    ...
            [ Nov => 30 ],
            [ Dec => 31 ],
        );