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

Re: eval not working the way I expected?

by Errto (Vicar)
on Jan 09, 2008 at 19:08 UTC ( [id://661459]=note: print w/replies, xml ) Need Help??


in reply to eval not working the way I expected?

One other thing - if the code inside the eval does produce a fatal error (and divide by zero is the only one I can think of unless the values are actually objects of a class that overrides arithmetic) you'll still get a warning printed for Use of uninitialized value in sprintf. The reason is that if the eval fails, it will return an undefined value. sprintf will coerce this to the number zero, but it will issue a warning in doing so. To avoid that, you can either disable warnings on the relevant block by saying no warnings; or you can do the conversion explicitly by saying something like eval { ... } || 0

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-18 04:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found