in reply to Re: Seeking guidance on getting better at Perl.
in thread Seeking guidance on getting better at Perl.
While the diagnostics pragma is a useful tool for debugging, particularly when you are learning Perl, I would recommend removing, or commenting out, the use diagnostics; line in production code.
Perhaps, as a general rule-of-thumb, consider doing this at the same time that you change
$DEBUG_MODE = 1;
to
$DEBUG_MODE = 0;
and for much the same reasons.
-- Ken
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Seeking guidance on getting better at Perl.
by Endless (Beadle) on Aug 20, 2013 at 16:38 UTC | |
by kcott (Archbishop) on Aug 21, 2013 at 07:12 UTC |
In Section
Seekers of Perl Wisdom