Words containing "the" substring: Difference between revisions

Content added Content deleted
(Standard ML: simplify)
No edit summary
Line 538: Line 538:
weatherstripping
weatherstripping
</pre>
</pre>

=={{header|Nanoquery}}==
<lang Nanoquery>words = split(new(Nanoquery.IO.File).open("unixdict.txt").readAll(),"\n")
for word in words
if (word .contains. "the") and (len(word) > 11)
println word
end if
end for</lang>


=={{header|Perl}}==
=={{header|Perl}}==