I'm trying to re-use some code by using a module, and it seems to work until I try to put it in a folder.
For example, when my the app.pl and My_Module.pm are in the same directory (i.e. /path/to/dir/app.pl and /path/to/dir/My_Module.pm), it works fine when I put use My_Module; in app.pl.
But as soon as I move My_Module.pm to a directory IN the app directory (i.e. /path/to/dir/My_Module_Folder/My_Module.pm), the functions don't seem to import. In app.pl, I am putting use My_Module_Folder::My_Module;, and it compiles fine, but I get an error when I try to use a function from My_Module.
Does anyone have any idea how to fix this? I can move the module file to the app dir, but I would like to keep things organized.
Thanks!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.