Help for this page

Select Code to Download


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