Help for this page

Select Code to Download


  1. or download this
        $hash{'filename'} = [ @array ];  # copies array
    
  2. or download this
        $hash{'filename'} = \@array;     # "aliases" array
    
  3. or download this
        $hash{'filename'}[0]; $hash{'filename'}[1];