- or download this
my @keywords = ('this','that','other','foo','this',
'bar'); ^dupe
- or download this
my @keywords = ('this','that','other','foo','THIS',
'bar'); ^uc(dupe)
- or download this
use strict;
...
foreach my $word (@keywords) {
print $word . "\n";
}