Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^3: Problem printing return value from a subroutine

by AnomalousMonk (Archbishop)
on Oct 04, 2012 at 11:15 UTC ( [id://997220]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub induced {
    my (@z)=@_;
    ...
            return (@$triplet);
        }
    }}
    
  2. or download this
    for my $QT (\@z ){
            ...
    ...
            print "@$triplet\n" if keys(%Pie) <= ( @$QT - @$triplet ) ;
            ...
    }
    
  3. or download this
        for my $triplet ( @trip ){
            my %Pie;
    ...
            print "@$triplet\n" if keys(%Pie) <= ( @$QT - @$triplet ) ;
            return (@$triplet);
        }
    
  4. or download this
    sub induced {
    
    ...
        return @$triplet;
        
        }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found