Help for this page

Select Code to Download


  1. or download this
    my $make_output = sub {
        my ($Registration, $Rank) = @_;
        return @{ $Data{$Registration}->{Name} }[$Rank], "\t";
    ...
    
    print $make_output->($Registration1, $Rank1),
          $make_output->($Registration2, $Rank2);
    
  2. or download this
    my $data = Data->new( ... );
    print $data->make_output($Registration1, $Rank1),
    ...
    
        return @{ $self->{$Registration}->{Name} }[$Rank], "\t";
    }