# Name of this file: pack_A.pm package pack_A; require Exporter; @ISA = qw {Exporter}; @EXPORT = qw {first second}; sub first { } sub second { } 1; #end package pack_A; package pack_B; sub third { } sub fourth { } 1; #end package pack_B;