Help for this page

Select Code to Download


  1. or download this
    while(<IN2>) {
        chomp;
        print "$_ is a new site\n" 
          if not defined($newsite1{$_});
      } # while
    
  2. or download this
    while(<IN2>) {
        chomp;
        print "$_ is a new site\n" unless exists $newsite1{$_};
      } # while