- or download this
package ConfigThisJunk;
use strict;
...
}
our $DEBUG = 1;
1;
- or download this
SomeJunk.pl
use strict;
...
our $DEBUG;
use ConfigThisJunk qw ( $DEBUG );
print $DEBUG;
- or download this
print $ConfigThisJunk::DEBUG;
- or download this
our $DEBUG = $ConfigThisJunk::DEBUG;