in reply to using references as keys in a hash.
If you turned on strict, you'd be warned that a string can't be used as an array reference.%hash = ("ARRAY(0x80fbb0c)" => "STUFF");
Hash keys must be strings, not references. If you want to "dereference" something, you probably should be storing the reference itself as a hash value, so you can use it directly and not need to dereference it in the first place.
$perlmonks{seattlejohn} = 'John Clyman';
|
|---|