blob: c942c9febbb5d15e4956714f1e357d55a809cb36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Allows you to both load one or more modules, while setting up inheritance
from those modules at the same time. Mostly similar in effect to
package Baz;
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
WWW: https://metacpan.org/release/parent
|