Help for this page

Select Code to Download


  1. or download this
    sub timediff($;$) {
        my $then = $_[0];
        
    ...
    
        return $diff;
    }
    
  2. or download this
        sub timediff($) {
            use Time::Piece;
    ...
    
            return $diff;
        }