in reply to Re: Re: Re: Re: Re: Re-calling in a list of variables into different .pl's
in thread Re-calling in a list of variables into different .pl's

The use vars in the main program was necessary (because of the errors it generated without it regarding undeclared variables) until I changed it as you suggested to:
our @EXPORT; use vars @EXPORT=qw/ list of var names/;
I now only have two lists, both of them in the package (where it's easy to keep them synchronized (love that copy & paste!)).

Thanks so much for your help!

Lori