in reply to Re: newbie - hash - array?
in thread newbie - hash - array?

The \ you're both confused about actually creates a reference to the variable it precedes. In the code, it assigns a reference to the array of @user_info[4,5] as the value of the hash.

You need to read perldoc perlref. (Pay close attention to how you dereference a reference.)