Help for this page

Select Code to Download


  1. or download this
    llil start
    get_properties : 15 secs
    ...
    get_properties : 31 secs
    sort + output: 10 secs
    total: 41 secs
    
  2. or download this
    use strict;
    use warnings;
    use feature 'say';
    ...
    my $tend2 = time;
    warn "sort + output: ", $tend2 - $tstart2, " secs\n";
    warn "total: ", $tend2 - $tstart1, " secs\n";