package MyModule; use 5; use warnings; use strict; use Carp; use Exporter; our ($VERSION, @ISA, @EXPORT); @ISA = qw(Exporter); $VERSION = 1.0; @EXPORT = qw(myfunction); # Functions sub myfunction { } 1;