in reply to How to access multiple hash variables defined in a module
Note, that hash variables should be declared as package variables in XYZ. Like this:use Data::Dumper; warn Dumper \%XYZ::Hash1;
though you seems aren't using strict...our (%Hash1, %Hash2, %Hash3);
|
|---|