in reply to Re: calling a perl file from a perl script
in thread calling a perl file from a perl script

Hi,I just wan to know that if 2 pm files are used in a script then i have to call both pm file in pl file so how it is possible.
  • Comment on Re^2: calling a perl file from a perl script

Replies are listed 'Best First'.
Re^3: calling a perl file from a perl script
by massa (Hermit) on Aug 01, 2008 at 10:23 UTC
    Your question did not parse. Did you already read perlmod? use? require?
    []s, HTH, Massa (κς,πμ,πλ)
Re^3: calling a perl file from a perl script
by spivey49 (Monk) on Aug 01, 2008 at 20:55 UTC

    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;