in reply to Re^2: Using a simple module without full package names
in thread Using a simple module without full package names

It's good to be able to use Exporter and to understand it but I got bored typing the same old Exporter stuff over and over again, so I wrote Exporter::Easy. It turns
use Exporter; use vars qw( @ISA @EXPORT ); @ISA = qw( Exporter ); @EXPORT = ( &get_msg );
into
use Exporter::Easiest q( EXPORT => &get_msg )
and lots more.

Updated: I should point out that it's still Exporter that does the exporting, Exporter::Easy just eliminates the mindless typing involved in setting up @EXPORT, especially if you use tags.

Replies are listed 'Best First'.
Re^4: Using a simple module without full package names
by wfsp (Abbot) on Jul 13, 2004 at 07:10 UTC
    Thanks for that. I'll have a look, wfsp