in reply to newbie - hash - array?
i dont think u have any problem with the code.
u have refernced the values of the keys at line 11
so when u r printing u should dereference the values.
here u r not doing that so it is returning the address of the array elements u have referenced
use
print "User Info on $user: @{$user_dict{$user}}\n";
instead of ur last print statement.it should work.