in reply to Why is this a symbolic reference?
The symbolic reference error comes from your code trying to dereference a string:print keys %{ $hash_ref -> { key } };
hash_ref isn't a hash ref, it's a string. $hash_ref is the hash ref.hash_ref->{key}
|
|---|