Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        my $debug = 0;
    ...
    }
    
    use warnings;
    
  2. or download this
    BEGIN {
        $::DEBUG = 1;
    }
    use warnings $::DEBUG ? "all" : "io";  # Or some other category.