#module Foo1.pm located in B package Foo1; require Exporter; @ISA = qw|Exporter|; @EXPORT_OK = qw|foo|; sub foo { print "Hello World, I'm here\n"; } 1;