Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Return a var from one sub to another

by philcrow (Priest)
on Jul 10, 2007 at 20:29 UTC ( [id://625923]=note: print w/replies, xml ) Need Help??


in reply to Return a var from one sub to another

Your foo only returns one value which is a reference to a hash (which is a common technique). To get the values, use a bit more notation, something like so:
sub goo { my $var = foo(); print "var is $var->{ message }\n" if $var->{error}; }
The Gantry Web Framework Book is now available.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-03-19 09:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found