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

Re: Improving the Error Handling of my Scripts

by Hue-Bond (Priest)
on Mar 11, 2010 at 08:38 UTC ( [id://827982]=note: print w/replies, xml ) Need Help??


in reply to Improving the Error Handling of my Scripts

I do not like the fact that the line number is static and I have to remember to update it if I ever modify the script (I won't remember).

Use __LINE__ for that:

use warnings; use strict; printf "I'm in line %d\n", __LINE__; printf "I'm in line %d\n", __LINE__; printf "I'm in line %d\n", __LINE__; __END__ I'm in line 4 I'm in line 5 I'm in line 6

--
 David Serrano
 (Please treat my english text just like Perl code, i.e. feel free to notify me of any syntax, grammar, style and/or spelling error. Thank you!).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-03-29 11:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found