Help for this page

Select Code to Download


  1. or download this
    my %results;
    while(my($score, $url) = getnextpair()) {
      push @{$results{$score}}, $url;
    }
    
  2. or download this
    my $url = $results{$score}->[0]
    
  3. or download this
    my @urls = @{$results{$score}}