Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Perl print statement + HTTP request

by betterworld (Curate)
on Jun 07, 2012 at 11:54 UTC ( [id://974923]=note: print w/replies, xml ) Need Help??

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";
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://974923]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-03-29 14:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found