Help for this page
my @words = get_words_to_check(); my %hash = map { $_ => 1 } @words; ... my @good_words = grep { exists $hash{$_} } @words; # Keep the original + order my @good_words_2 = keys %hash; # Don't care about the original order
my $index = 0; LINE: while (my $line = <>) { ... last LINE if ++$index == @words; } }
www.com | www.net | www.org
Never Hardly ever Occasionally Fairly regularly Frequently
Results (17 votes). Check out past polls.