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