Help for this page

Select Code to Download


  1. or download this
    push @array, [$first, $last, $address, $city, $zip];
    
  2. or download this
    while(<DATA>) {
      push @array, [$first, $last, $address, $city, $zip];
    ...
    foreach (@array){
      print "@$_\n";
    }
    
  3. or download this
    push @array, $first, $last, $address, $city, $zip;