Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    LINE: while (defined($_ = <ARGV>)) {
    ...
        }
        ;
    }
    
  2. or download this
    use Data::Dumper;
    while (defined($_ = <ARGV>)) {
    ...
        }
    }
    print Dumper(\%warnings);
    
  3. or download this
    use Data::Dumper;
    use warnings;
    ...
        }
    }
    print Dumper(\%warnings);