in reply to Re: Re: Hash Printing Question
in thread Hash Printing Question

Oops... In a double-quoted string, ${input_queue}{'name'} is interpreted as the scalar variable $input_queue, followed by the string {'name'}. I didn't realize that when I wrote my answer either.

So, you really do need to remove those extra braces: print "name: $input_queue{'name'}\n";