package Dir::Pkg; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(sub1 sub2); $VERSION = 1.00; use SomeOtherModule; sub1 { } sub2 { }