# testlib.pm package testlib; use strict; our @EXPORT = qw( $var ); #place all the variables you want to export by default in here (c.f. @EXPORT_OK) use Exporter; our @ISA = qw(Exporter); our $var = "Lord only knows if this will work..."; 1;