in reply to Re: Hash reference question
in thread Hash reference question

The funny thing about the issue is that this worked OK:
my %funny; foo(\%funny); sub foo(\%) { my $foo = shift; $foo->{"FOO"} = "BAR"; }
If foo was from a module, it didn't work.. But thanks, now I know.