Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      no warnings 'deprecated';
      %hash->{ silly } = 'foo';
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
      no warnings 'once';
      *import = \&Exporter::import;
    }
    
  3. or download this
    Name "main::import" used only once: possible typo...
    
  4. or download this
    *import = *import = \&Exporter::import;