package Some::Really::Long; use Carp; use Exporter; @ISA=(Exporter); #@EXPORT=qw(Thing carp); # Method 1. @EXPORT_OK=qw(Thing carp); # Method 2. (preferred). $VERSION = 1.00; sub Thing{ return 'From Some::Really::Long::Thing()'; } 1;