package MyModule; use strict; use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION); require Exporter; @ISA = qw(Exporter); @EXPORT = qw(functionOne functionTwo); $VERSION = 1.00; use Image::Magick; sub functionOne { } sub functionTwo { } return 1;