package mac; use strict; use warnings; use Exporter (); our @EXPORT = qw /get_answer/; our @ISA = qw /Exporter/; sub get_answer { "mac"; } 1; __END__