Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Code Maintainability

by jkva (Chaplain)
on Dec 05, 2008 at 07:35 UTC ( [id://728210]=note: print w/replies, xml ) Need Help??


in reply to Code Maintainability

Very nice meditation!

Since I noticed some discuss their debug flag techniques, I tend to do either

my $DEBUG = 1; $DEBUG && print 'debugging mode';

or

my $DEBUG = 1; $DEBUG && do { print 'isn\'t'; print 'that something' }

in case of blocks.

Having $DEBUG in the start of the line immediately tells you there's debug related code coming through.

Log In?
Username:
Password:

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

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

    No recent polls found