Help for this page

Select Code to Download


  1. or download this
    our $DEBUG;                          <-- 1
    use ConfigThisJunk qw ( $DEBUG );    <-- 2
    
  2. or download this
    our $DEBUG = 1;
    
  3. or download this
    use vars qw( $DEBUG );
    $DEBUG = 1;
    
  4. or download this
    use ConfigThisJunk;
    print $ConfigThisJunk::DEBUG;