In Perl you could turn off modules you do not need, like this:
1 2 3 4 |
use constant { DEBUG => 0 }; use if DEBUG,strict; |
In Perl you could turn off modules you do not need, like this:
1 2 3 4 |
use constant { DEBUG => 0 }; use if DEBUG,strict; |
3 thoughts on “Perl use module only for debugging”