Help for this page
#file shared1.pm: use strict; ... use Exporter(); @ISA=qw(Exporter); @EXPORT = qw(xxx1); # exports name xxx1
use strict; use shared1; # 'include' shared code ... # call sub defined in shared1.pm my $result = xxx1($arg1, %arg2, @arg3, $optarg1, $optarg2); ...