I'm stumped. I've distilled my issue down to its simplest possible form (see below) and I'm still stumped.
I'm writing a module, Bar.pm
package Bar;
use strict;
use Exporter;
use vars qw(@ISA @Export $VERSION);
@ISA = qw(Exporter);
@Export = qw(&ff_error );
$VERSION = 1.00;
###########################################
sub ff_error {
my ($error,@error_fields) = @_;
print "\n\n ERROR: $error @error_fields\n\n";
exit;
}
1;
which is called by my program, foo.pl
#!/usr/local/bin/perl -w
use strict;
use Bar;
&ff_error("die here");
Which when executed gives me:
./foo.pl
Undefined subroutine &main::ff_error called at ./foo.pl line 6.
Please note that perl -V let's me know that @INC includes "." and my version is 5.00503.
Please save me from going crazy looking at this...!#$^@#^
-------------------------------------
Nothing is too wonderful to be true
-- Michael Faraday
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.