http://www.perlmonks.org?node_id=1014778


in reply to Module's name and file's name

The way Perl is "wired" when you have

use HR; # using your example
it checks all the directories in @INC for a file named "HR.pm" and isn't going to look in "MyModule.pm"


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg

Replies are listed 'Best First'.
Re^2: Module's name and file's name
by beurive.denis (Novice) on Jan 22, 2013 at 20:14 UTC

    Hello,

    Thank you.

    I know. That's why I use :

    use MyModule;

    That way, Perl finds the file "MyModule.pm".

    But the the module's name is "HR" (as declared after "package"), not "MyModule".

    I think that it messes up something.

    I may be wrong.

    What do you think ?

    Thank you.

      I think that it messes up something.

      It messes up clarity for the hacker who inherits your code. :P