| Backslash | Home Page | Subroutines Index | bcmp |
NNAAMMEE
base - Establish IS-A relationship with base class at
compile time
SSYYNNOOPPSSIISS
package Baz;
use base qw(Foo Bar);
DDEESSCCRRIIPPTTIIOONN
Roughly similar in effect to
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
}
This module was introduced with Perl 5.004_04.
BBUUGGSS
Needs proper documentation!
| Backslash | Home Page | Subroutines Index | bcmp |