Hello All,

I just have a quick question about printing hash of hash values.  The
hash looks like the following...

%popusers = (
                   'user1' => {
                                 'fullname1' => 'YES'
                               },
                   'user2' => {
                                    'fullname2' => 'NO'
                                  }
                 );

now if I do the following...

for $usernames (keys %popusers_test) {
  print $usernames, "\n";
}

it prints...

user1
user2

How can I do the same for fullname1 and fullname2 and YES NO?

Any ideas appricieated.

Regards,

Dan

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to