package Config; use strict; use warnings; our (@ISA,@EXPORT,$VERSION,$test); use Exporter; @ISA=qw(Exporter); @EXPORT=qw($test DEFAULT_LOCAL_PATH ); $VERSION=0.01; use constant DEFAULT_LOCAL_PATH=>'something here'; $test='hello'; 1;