Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

multiple require "script.pl" files...

Status
Not open for further replies.

spewn

Programmer
May 7, 2001
1,034
how do i call for multiple files?


like ...


#!/usr/bin/perl

require "cards3.pl";

i want to add more files, like cards4.pl, etc... how to?

- spewn

 
Just add more requires...

#!/usr/bin/perl

require "cards3.pl";
require "cards4.pl";
require "cards5.pl";
 
Hi,

I've been try to use the require and it all works well untill I try to create an executable (with activestate compiler).

The executable does not contain the required files....

Any idees?


Thierry.


AD AUGUSTA PER ANGUSTA

Thierry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top