package myMod; use strict; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(tryIt); sub tryIt { print "We did it!!\n\n"; } 1;