base

Section: Perl Programmers Reference Guide (3)
Updated: perl 5.004, patch 55
Index Return to Main Contents
 

NAME

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

SYNOPSIS

    package Baz;


    use base qw(Foo Bar);


 

DESCRIPTION

Roughly similar in effect to

    BEGIN {
        require Foo;
        require Bar;
        push @ISA, qw(Foo Bar);
    }


This module was introduced with Perl 5.004_04.  

BUGS

Needs proper documentation!


 

Index

NAME
SYNOPSIS
DESCRIPTION
BUGS

This document was created by man2html, using the manual pages.
Time: 23:58:14 GMT, February 15, 2023