Help for this page

Select Code to Download


  1. or download this
    my @NameArray;
    
    $NameArray[0]{firstname} = "Jan";
    $NameArray[0]{famname}   = "Jansen";
    $NameArray[0]{street}    = "ParkAvenue";
    
  2. or download this
    sub addnaw
    { # In real a subroutine which collects a specific line
    ...
      $value{street}    = "Bellpark";
      return %values;
    }
    
  3. or download this
    
    my @NameArray;
    ...
    for ($i; $i < $endvalue; $i++)
    { NameArray[$i] = addnaw(); # Fault code
    }