Приглашаем посетить
Пушкин (pushkin-lit.ru)

[Chapter 8] 8.21 base

PreviousChapter 8
Standard Modules
Next
 

8.21 base

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);
}


PreviousHomeNext
8.20 B::XrefBook Index8.22 Benchmark