Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $runtime = sprintf("%.16s", $end - $start);
    print $runtime;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $end = time();
    my $runtime = sprintf( "%.16s", $end - $start );
    print $runtime;