Help for this page

Select Code to Download


  1. or download this
    $ perlcritic --verbose 11 foo.pl
    "require" statement with library name as string at line 6, near 'requi
    +re '/tmp/config.pl';'.
    ...
    
            use 'My/Perl/Module.pm';  #not ok
            use My::Perl::Module;     #ok
    
  2. or download this
    require '/tmp/config.pl'; ## no critic (RequireBarewordIncludes)