Help for this page

Select Code to Download


  1. or download this
    my %seen;
    
    while (<>)
    ...
         next if ($seen{$_}++);
         print;
    }
    
  2. or download this
    my $last;
    
    while (<>)
    ...
         $last = $_;
         print;
    }