Hi,
Currently, i have a perl file "A.pl" that has all the functionality that is needed. It also has the pre-defined arrays and hashes declared. Now this file has become too large and has become unmodular.
1. How can i organize this file in a modular way?
2. Can i put all the array and hash definitions into one more file "B.pl" and include it in A.pl as in 'C' language header files? If so, how do i include it?
thanks a lot,