On Thu, Nov 24, 2011 at 3:15 PM, Linda Walsh <perl-diddler@tlinx.org> wrote: > use feature 'don't auto add .pm"; / > > use "Foo::Bar.pm" #or non bare word? > That wouldn't work. The following would now load the module twice: use Foo::Bar; require "Foo/Bar.pm"; It also makes it impossible to distinguish between files Foo/Bar and Foo/Bar.pm.Thread Previous | Thread Next