Help for this page

Select Code to Download


  1. or download this
        our @common_letters = ();
        our @wordsCopy = @words;
    
  2. or download this
        local our @common_letters;
        local our @wordsCopy = @words;
    
  3. or download this
        local our @common_letters;
        local our @wordsCopy = @words;
    ...
        $reference =~ /(.)(?{        
           ...
        })/gx;
    
  4. or download this
        my @common_letters;
        my @wordsCopy = @words;
    ...
        while ($reference =~ /(.)/g) {
           ...
        }
    
  5. or download this
        for my $c($reference =~ /./g)  # uses $c instead of $1
    
  6. or download this
        for my $c (split(//, $reference))  # uses $c instead of $1
    
  7. or download this
           my $bolean = 1; 
           for ( @wordsCopy ) 
    ...
               } 
           }
           $common_letters[ $position ] = $letter if ( $bolean );
    
  8. or download this
           for ( @wordsCopy ) 
           { 
    ...
                   last
               } 
           }
    
  9. or download this
        my @wordsCopy = @words;
        my $reference = shift @wordsCopy;
    
  10. or download this
        my ($reference, @wordsCopy) = @words;
    
  11. or download this
           for ( @splitWord ) 
           { 
    ...
                   last
               } 
           }