Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
NAME
ModuleBundle - Combine several other modules into one package
SYNOPSIS
Create a package that looks like this:
package XYZ;
use X;
use Y;
use Z;
use ModuleBundle;
@ISA = 'ModuleBundle;
1;
Now if you say
use XYZ;
that is the same as saying
use X;
use Y;
use Z;
DESCRIPTION
See the SYNOPSIS.
AUTHOR
Mark-Jason Dominus (mjd-perl-bundle@plover.com)