Help for this page

Select Code to Download


  1. or download this
    sub is_leap_year {
        my $year = shift;
    
    ...
        }
        return undef;
    }
    
  2. or download this
    $today = localtime;
    
    ...
    $yesterday = localtime;
    
    print "Yesterday's date was $yesterday\n";