Help for this page

Select Code to Download


  1. or download this
    $hash{$id} = [1,2,3];
    my @temp = (1,2,3);
    $hash{$id} = \@temp;
    
  2. or download this
    @{$hash{$id}}; # for the whole array
    $hash{$id}->[0]; # for the first element