Help for this page

Select Code to Download


  1. or download this
     use ModestCurrentDateModule;
    
    ...
     my $date3 = monthNumber.'-'.monthDay.'-'.year;
     my $date4 = monthNumber.'-'.monthDayDouble.'-'.year;
    
  2. or download this
    package ModestCurrentDateModule;
    use strict;
    ...
    sub monthDayDouble{ double monthDay }
    sub year{ 1900 + $y }
    1;