package Package1; use base 'Exporter'; our @EXPORT_OK = qw/this that/; our %EXPORT_TAGS = ( all => [qw/this that/], ); sub this { 'this' } sub that { 'that' } 1;