in reply to Re^2: calling a perl file from a perl script
in thread calling a perl file from a perl script
It sounds like you're asking how to use two different modules. That's as simple as using two use statements. e.g.
use strict; use warnings; use Newmodule; use Othermodule;
|
|---|