- or download this
#!/usr/bin/perl
use strict;
...
printf "Found %1.0f words in common\n", $counter;
- or download this
orange
red
Found 2 words in common
- or download this
#!/usr/bin/perl
use strict;
...
print "$_\n\n" for sort values %common;
printf "Found %1.0f words in common\n", scalar keys %common;