Help for this page

Select Code to Download


  1. or download this
    while(<DATA>) {
      push @array [$first, $last, $address, $city, $zip];
    }
    
  2. or download this
    while(<DATA>) {
      push @array, [split];
    }