I have a hash:
my $normal_hash = {a => '10',};
print $normal_hash; # prints HASH(0x......)
I want to refer to this hash in the following way:
my $var = 'normal_hash';
print $$var;
This is WRONG, but what do I need to put in there in order to get the same result?