Help for this page

Select Code to Download


  1. or download this
    my %seen;
    while (<$FILE>) {
    ...
    for my $string (keys %seen) {
        print "$string encountered $seen{$string} time(s).\n";
    }