in reply to Getting keys/values from a referenced hash
You can use either
keys %{$hashref}; values %{$hashref}; [download]
or more short syntax
keys %$hashref; values %$hashref; [download]