our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $Verbose, $FORMAT) ;
@ISA = qw(Exporter);
@EXPORT = ();
@EXPORT_OK = qw( sub1 sub2 ) ;
%EXPORT_TAGS = ( DEFAULT => [qw(&sub1)],
Both => [qw(&sub1 &sub2)]);
$VERSION = 1.0 ;
$Verbose = 0 ;
####
use MyModule qw(:DEFAULT)
####
use MyModule qw(:Both)