Luken8r has asked for the wisdom of the Perl Monks concerning the following question:
What I would like to do is use error in some other function goo()sub foo{ my %args = ( message => 0, error => 0); my $msg; my $var1 = 0 if ($var = 0) { $msg = "var 0"; return { error =>0, message=$msg } } else{ $msg = "not var 0" return { error =>1, message=$msg } }
I get some hash out of it. How can I get the individual variables error and message from the first function?sub goo{ my $var = &file::foo(); system (`echo "var is $var" > ~/file`); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Return a var from one sub to another
by philcrow (Priest) on Jul 10, 2007 at 20:29 UTC | |
Re: Return a var from one sub to another
by FunkyMonk (Chancellor) on Jul 10, 2007 at 20:44 UTC | |
by Luken8r (Novice) on Jul 10, 2007 at 23:07 UTC |