Help for this page

Select Code to Download


  1. or download this
    sub paddatevalues {
       foreach my $value (@_) {
    ...
       }
       return @_;
    }
    
  2. or download this
    sub paddatevalues {
       return map {sprintf "%02d", $_} @_;
    }