Help for this page
if (!exists $people{$name}) { $people{$name} = [ $value ]; # store array with one value ... push @{$people{$name}}, $value; # push 2nd,3rd,.. value on arr +ay }
push @{$people{$name}}, $value;