I was referred to
chromatic's SOPW
post that gave a beginner's template on writing their first module. I've started in on mine, but I'm noticing that some of the first few fields need a bit more explanation...
The code from chromatic's post starts out with the following:
# Magical export invocation.
use Exporter;
@ISA = 'Exporter';
@EXPORT_OK = qw(genHeader);
now, I interpreted the EXPORT_OK array to contain the subroutines from the module that would be exported to the script calling it. so, i placed (genHeader) in there. In my "module", I just have:
# Body here.
# Will fill in
sub genHeader {
my $i = shift;
print "<VirtualHost $i>\n";
}
However, when I run my code, I receive the Undefined subroutine &main::genHeader error. My mod is called config.pm and its in the current directory as the script. My script's perl call is #!/usr/bin/perl -w -I./
Is there a module howto that I can run off of on top of chromatic's post? Or, if the answer's concise, can someone point out what's wrong with what I have?
humbly -c
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.