in reply to Method calling question...
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")
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
use base qw(Base) (was: Method calling question...)
by jplindstrom (Monsignor) on May 01, 2001 at 03:04 UTC | |
| |
|
Re: (tye)Re: Method calling question...
by spaz (Pilgrim) on May 01, 2001 at 03:08 UTC | |
by tye (Sage) on May 01, 2001 at 05:44 UTC |