Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
  2. or download this
    BEGIN {
       require warnings;
       import warnings;
    }
    
  3. or download this
    BEGIN {
       my $debug = 1;
    ...
          import warnings;
       }
    }
    
  4. or download this
    my $debug;
    BEGIN { $debug = 1; }
    use if $debug, 'warnings';