summaryrefslogtreecommitdiff
path: root/devel/p5-parent/DESCR
blob: 7bbc2b8c6027e96267dbfefbb3d8928f67f9177f (plain)
1
2
3
4
5
6
7
8
9
10
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);
    }