Help for this page

Select Code to Download


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