package M; require Exporter; @ISA = (Exporter); @EXPORT = qw(hello); use warnings; use strict; sub hello { print "Hello @_!\n"; }