- or download this
Global symbol "$x" requires explicit package name (did you forget to d
+eclare "my $x"?) at <location>
- or download this
Bareword "xxx" not allowed while "strict subs" in use at <location>
- or download this
open(DATA, "<$tmpfile") or die "Can't open data";
- or download this
$ perl -E 'say for <DATA>'
Name "main::DATA" used only once: possible typo at -e line 1.
readline() on unopened filehandle DATA at -e line 1.
$
- or download this
$ perl -E 'say for <DATA>; __END__'
$
- or download this
perl -E '...'
- or download this
perl -Mstrict -Mwarnings -Mautodie -E '...'