http://qs1969.pair.com?node_id=451843


in reply to iterating a hash of (complex?) arrays

Is this about what you're looking for?
for my $label (sort keys %family) { my @names = @{$family{$label}}; print "$label\n"; for my $name (@names) { print ref($name) ? "\t@$name\n" : "\t$name\n"; } }
Notice that you don't generally have to iterate through the index of an array. Note also that you were fetching an array ref into an array (@names). You need to dereference it, as I have done here.

Caution: Contents may have been coded under pressure.