Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: variable scope within eval{}

by Stegalex (Chaplain)
on Jan 29, 2010 at 23:12 UTC ( [id://820421]=note: print w/replies, xml ) Need Help??


in reply to Re: variable scope within eval{}
in thread variable scope within eval{}

Yes I did and it works fine in the eval block but is invisible when passed to the sub

Replies are listed 'Best First'.
Re^3: variable scope within eval{}
by AnomalousMonk (Archbishop) on Jan 29, 2010 at 23:18 UTC

    Easy enough to prove it works:

    >perl -wMstrict -le "my $bl_id; my @bly_id; sub insert_budget_line { return 'foo'; } sub insert_budget_line_year { return @_[1,0]; } eval { $bl_id = insert_budget_line(); @bly_id = insert_budget_line_year(bl_id => $bl_id); }; print qq{@bly_id}; " foo bl_id

    How is your  insert_budget_line_year function defined?

Re^3: variable scope within eval{}
by holli (Abbot) on Jan 29, 2010 at 23:19 UTC
    Can you post the relevant code of the sub you call?


    holli

    You can lead your users to water, but alas, you cannot drown them.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (7)
As of 2024-03-28 11:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found