package MightyMod; use strict; require Exporter; our @EXPORT = qw(GoodSub); our @ISA = qw(Exporter); sub GoodSub { return 42 + LostSub(@_); } 1;