I recently created a Perl script to search for words starting with D and E with the following code:
$infile =’words.txt’;
open(IN, $infile);
$count = 0;
while ($word = ) {
chomp($word );
if (
I recently created a Perl script to search for words starting with D and E with the following code:
$infile =’words.txt’;
open(IN, $infile);
$count = 0;
while ($word = ) {
chomp($word );
if (