Help for this page

Select Code to Download


  1. or download this
    while (<FILE>) {
      chomp;
      my ($name, $address) = split /,\s+/, $_, 2;
      print "$name lives at $address\n";
    }