Help for this page

Select Code to Download


  1. or download this
    for $i (1..$n)
         {
    ...
           ...stuff about $a[$i][$j]
              }
         }
    
  2. or download this
    foreach (keys %a)
         {
         ...stuff about $a{$_}
         }
    
  3. or download this
    for $i (1..$n)
         {
         }