- or download this
my @cleanwords = qw (hut hat);
my @allwords = qw (hit het hat);
foreach my $var (@cleanwords)
...
print $var," not found\n";
}
}
- or download this
use File::Slurp::Tiny 'read_file';
my @allwords = read_file ($ref);
- or download this
foreach (@allwords){
print "allwords: ",$_,"\n";
}