Help for this page

Select Code to Download


  1. or download this
    my $DEBUG;
    BEGIN { $DEBUG = $ARGV[0]; }
    ...
    #     end of this block (namely
    #     until the end of the file).
    print($test);   # strict error if $DEBUG
    
  2. or download this
    my $DEBUG;
    BEGIN {
    ...
    #     end of this block (namely
    #     until the end of the file).
    print($test);   # strict error if $DEBUG
    
  3. or download this
    my $DEBUG;
    BEGIN {
    ...
       }
    }
    print($test);   # No strict error