![]() |
|
Pathologically Eclectic Rubbish Lister | |
PerlMonks |
(tye)Re: Method calling question...by tye (Sage) |
on May 01, 2001 at 02:43 UTC ( #76800=note: print w/replies, xml ) | Need Help?? |
I can think of a few reasons why this might fail. First, I don't see any require Foo nor require Bar (or replace require with use). Second, you can replace @ISA= qw(Base) with use base qw(Base) which has some advantages. But I have more important reasons for mentioning that: On file systems that ignore upper- vs. lower-case in file names, use Base could end up loading base.pm instead of Base.pm, which would also break your code. - tye (but my friends call me "Tye")
In Section
Seekers of Perl Wisdom
|
|