Help for this page

Select Code to Download


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