in reply to Re^2: trying to print hashes with mixed results
in thread trying to print hashes with mixed results

> but just from a learning standpoint how could I get that loop work and print the values?

you are looping over a hash-ref and $v is another hash-ref, again.

so start another loop over $v.

In the general case you'll need a recursive function which loops over hash-refs and array-refs.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

  • Comment on Re^3: trying to print hashes with mixed results