package Junk; require Exporter; our @ISA = 'Exporter'; our @EXPORT = qw|hi hello hola|; sub hi { "hi"; } sub hello { "hello"; } sub hola { "hola"; } 1;