Help for this page

Select Code to Download


  1. or download this
    use Time::HiRes qw(gettimeofday tv_interval);
    my $TH = [gettimeofday];
    ...
      ...and some more!...
    }
    report("C");
    
  2. or download this
    my %TH;
    sub report {
    ...
    }
    ...
    print "$_: $TH{$_}\n" for keys %TH;