package Config; use strict; use warnings; our (@ISA,@EXPORT,$VERSION); use Exporter; @ISA=qw(Exporter); @EXPORT=qw($test DEFAULT_LOCAL_PATH ); $VERSION=0.01; use constant DEFAULT_LOCAL_PATH=>'something here'; my $test='hello'; 1; #### use strict; use warnings; use FindBin; use lib "$FindBin::Bin"; use Config; print $test; #### Global symbol "$test" requires explicit package name at miFile.pl line 10. Execution of backup.pl aborted due to compilation errors.