X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/bd3d0583950212b2f79deb8cb857c0f408cdf2aa..0c289d1353d1d6a489307ffba4ca3a6f96e97809:/lib/base.pm diff --git a/lib/base.pm b/lib/base.pm index be4c667..574925f 100644 --- a/lib/base.pm +++ b/lib/base.pm @@ -2,7 +2,8 @@ package base; use strict 'vars'; use vars qw($VERSION); -$VERSION = '2.13'; +$VERSION = '2.14'; +$VERSION = eval $VERSION; # constant.pm is slow sub SUCCESS () { 1 } @@ -192,6 +193,9 @@ base - Establish an ISA relationship with base classes at compile time =head1 DESCRIPTION +Unless you are using the C pragma, consider this module discouraged +in favor of the lighter-weight C. + Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. Roughly similar in effect to