in reply to Perl Module Inheritance
Sort of. Take a look at perltoot and seek out the explaintion of what
sort of thing does for you. There are limitations and you need to be sure to understand those limitations to minimize your frustrations.package myModule; use vars qw/ @ISA /; @ISA = qw/ otherModule /; # This is also an "otherModule"
You can also do things like:
which is taken from the base man page. This also is a good read before proceeding further.package Foo; use base qw/ Bar Baz / ; |
|
|---|