in reply to Need of using Exporter to export package variables

Hi kbperl,

...When I declare variables as our <variable_name> in one of the module(say a.pm)and when i try to access them in other modules(say b.pm), i am able to do so when I don't use "use strict" and including a.pm in b.pm...
And why is that? Because using say: $ModuleA::value_to_get should get the value for you, while strict is enabled and in fact, even when use Exporter; is not used in "ModuleA" this still works. However, it's NOT good practice to even export modules variables to start with.

Is the reason to use exporter module is to export only a subset of the package variables or is there some other reason for this?
Adding to what have been said, I would say read Exporter Documentation.

If you tell me, I'll forget.
If you show me, I'll remember.
if you involve me, I'll understand.
--- Author unknown to me