
ModuleBundle - Combine several other modules into one package

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;

See the SYNOPSIS.

Mark-Jason Dominus (mjd-perl-bundle@plover.com)