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