package Test; use strict; use Exporter; my %config = ( lexpath => '/home/rj/proj/elric/lexika/', silence => 0, ); @ISA = qw(Exporter); @EXPORT_OK = qw(dummy); BEGIN { } sub dummy { print "aha"; } END { } 1;