Help for this page

Select Code to Download


  1. or download this
    # initialize an array at once with 3 scalars, two array pointers and o
    +ne hash pointer: 
    @array= (1,2,3,\@anotherarray,[1,2],{1=>15});
    
    # initialize a hash at once with three keys. Data is one scalar, one h
    +ash pointer and one array pointer
    %hash= (1=>15, 7=>{5=>4}, 2=>[1,2,3]);
    
  2. or download this
    foreach ... {
       $array[$i][$j]= $value;
    ...
    
       $hash{$i}{$j}= $value;
    }