I have created a global hash and when I try to access that hash from within a perl sub routine, it is not able to access it.
I have declared it as:
%HASH = ();
and trying to access it in a subroutine as :
$HASH{$key} = $value;
Please guide me if I am doing something wrong
use strictanduse warningson? Post some more code – didster Oct 25 '12 at 20:36pushing "in an array" but in a (anonymous) array reference INSIDE your hash. Note that it will be created if it doesn't exist. See the output of Data::Dumper on your hash to learn more. Learn more about references in the perlreftut. In almost all situations,useing strict and warnings helps to find wrong stuff. Learn more – memowe Oct 26 '12 at 9:20