Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: Handling non-fatal method error strings without exceptions or globals?

by sleepingsquirrel (Chaplain)
on Jan 19, 2005 at 16:51 UTC ( [id://423435]=note: print w/replies, xml ) Need Help??


in reply to Re: Handling non-fatal method error strings without exceptions or globals?
in thread Handling non-fatal method error strings without exceptions or globals?

Or, you could use wantarray to eliminate the caveat...
#!/usr/bin/perl -w $result = fun(); print "$result\n"; ($result, $error) = fun(); print "$result, $error\n"; sub fun { return wantarray ? ("stuff","Error") : "stuff" }


-- All code is 100% tested and functional unless otherwise noted.
  • Comment on Re^2: Handling non-fatal method error strings without exceptions or globals?
  • Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 01:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found