package My::Module::Name; require Exporter; our @ISA = qw(Exporter); our @EXPORT_OK = qw(some_function another_function); sub some_function { print "This is some function\n"; } sub another_function { print "This is another function\"; } 1;