$ cat partest.pl #!/usr/bin/perl use strict; use warnings; use ParTest; $ cat partest/ParTest.pm package ParTest; use strict; use warnings; use base 'Class::DBI'; 1; $ pp -p partest.pl -o partest.par -I partest $ cat par_run.pl #!/usr/bin/perl use strict; use warnings; use PAR 'partest.par'; use ParTest; print "loaded ParTest: $INC{'ParTest.pm'}\n"; END { print "Ending $0\n" } $ perl par_run.pl loaded ParTest: /tmp/par-tina/cache-...../0f313bdd.pm Ending par_run.pl