Help for this page

Select Code to Download


  1. or download this
    $hash{key} = \@my_array;  # the \ makes it a reference
    
    or
    
    $hash{ket} = [1, 23, 37];
    
  2. or download this
    $hash{key}->[0] = 1;
    $hash{key}->[1] = 23;