Having written some general subs, I thought it useful to put them in a module myUtil.pm. It was structured as follows:
use strict;
sub AAA {xxx;}
sub BBB {yyy;}
The module was put in the same library as the following main (rvBasic.pl)program:
use qw(AAA);
$zz=&AAA($a1,$a2);
The program aborted...