http://www.perlmonks.org?node_id=1006774


in reply to Include external variables?

A true module should do the job for you, but it is generally considered poor practice to export variables. In your case they are used as contants that are widely used in your application. You would not be concerned about "polluting" symbol space or accidentally changing their values. Go for it.

Bill