So I have a massive hash of hashes.
$VAR1 = {
'Peti Bar' => {
'Mathematics' => 82,
'Art' => 99,
'Literature' => 88
},
'Foo Bar' => {
'Mathematics' => 97,
'Literature' => 67
}
};
There's an example I found on the web.
What I want to print is 'Peti Bar' and 'Foo Bar', but it's not quite that simple. Imagine Mathematics being it's own hash within that hash, etc. So I'd wanta to print 'Peti Bar' -> 'Mathematics' -> 'AnotherHash' 'Foo Bar' -> 'Literature' -> 'Anotherhash'
I guess maybe what I'm asking is print the hash of hashes without key/value of each respective hash.