Help for this page

Select Code to Download


  1. or download this
    Global symbol "$x" requires explicit package name (did you forget to d
    +eclare "my $x"?) at <location>
    
  2. or download this
    Bareword "xxx" not allowed while "strict subs" in use at <location>
    
  3. or download this
    open(DATA, "<$tmpfile") or die "Can't open data";
    
  4. 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.
    $
    
  5. or download this
    $ perl -E 'say for <DATA>; __END__'
    $
    
  6. or download this
    perl -E '...'
    
  7. or download this
    perl -Mstrict -Mwarnings -Mautodie -E '...'