Provides a shortcut for setting up @ISA. You can say:
use base qw(A B);
instead of:
BEGIN { require Foo; require Bar; push @ISA, qw(Foo Bar); }
Copyright © 2002 O'Reilly & Associates. All rights reserved.