We don't bite newbies here... much | |
PerlMonks |
perlman:lib:baseby root (Monk) |
on Dec 23, 1999 at 00:49 UTC ( [id://1134]=perlfunc: print w/replies, xml ) | Need Help?? |
lib:baseSee the current Perl documentation for lib:base. Here is our local, out-dated (pre-5.6) version: 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); }
Will also initialize the
When strict 'vars' is in scope base also let you assign to This module was introduced with Perl 5.004_04.
SEE ALSO |
|