in reply to How to iterate through a hash of hashes?

{ local ($,, $\) = ($/, $/); print values %{$_} for values %hash; }
The output seperators provide the format, the for loop puts hash references in $_.

After Compline,
Zaxo