in reply to 'use strict;' between libraries
Your problem comes because you made all your variables lexical. That means, the variables are no longer visible in other files (or blocks, but files are blocks too). Hence, they aren't shared. The variables you want to share need to be package variables. Probably the easiest, and certainly the most common way is the use of the Exporter module.
Abigail
|
|---|