- or download this
package ConfigThisJunk;
use strict;
...
use constant DEBUG => 1;
1;
- or download this
use strict;
use warnings;
...
my $x = 123;
print("debug: x is $x\n") if DEBUG;
- or download this
package ConfigThisJunk;
use strict;
...
}
1;
- or download this
use strict;
use warnings;
...
my $x = 123;
print("debug: x is $x\n") if DEBUG;