package Module; require Exporter; @ISA = Exporter; @EXPORT = qw(dostuff); sub dostuff { my ($dostuff) = @_; return $dostuff } 1; __END__