in reply to Re: object inheritance in non ~.pm files
in thread object inheritance in non ~.pm files
For reference, syntax for definition of subclass 'badger' should have been
package mammal::badger; use base qw(mammal);
No direct assignment to @ISA is necessary with this syntax.
|
|---|