
base - Establish IS-A relationship with base class at compile time

package Baz;
use base qw(Foo Bar);

Roughly similar in effect to
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
This module was introduced with Perl 5.004_04.

Needs proper documentation!