in reply to Re^2: How can I merge data using a hash?
in thread How can I merge data using a hash?

Yes, it's a reference to an array. For instance:
$hash{$1}->[0] = $2; $ref = $hash{$1}; print @$ref[0];
$ref points to the array. @$ref is the array that $ref points to.