#!/usr/bin/perl -w use strict; use Test qw(dummy); #print $config{path}; &dummy; #### 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;