Dual-license your content for inclusion in The Perl 5 Wiki using this HOWTO, or join us for a chat on irc.freenode.net#PerlNet.
User:Blm/ISAVsbase
From PerlNet
< User:Blm
use base qw/Some::Module/;
is so much more than
push @ISA, 'Some::Module';
Why?
use base qw/Some::Module/;
is the equivalent of:
BEGIN {
require Some::Module;
push @ISA, 'SOME::Module';
}
see perldoc base

