I'm dynamically creating a 2 dimensional associative array (dictionary?)
I'm trying to loop through its keys - while keeping one of the indexes constant, so for instance all of the values associated to "key" with 'john' in its first bracket:
myhash['john']['smith'] = "address 1"
myhash['john']['doe'] = "address 2"
how can i get all of the keys of the hash for each "key" keeping the first index as 'john' (i want all of the last names)
Thanks