Words containing "the" substring: Difference between revisions

(→‎{{header|Smalltalk}}: misunderstanding in the problem statement)
Line 667:
 
=={{header|Smalltalk}}==
mhmm - I interpret the words "in this page" as to read the URL and fetch the page then search those words there...
 
{{works with|Smalltalk/X}}
<lang smalltalk>d := 'unixdict.txt' asFilename contents asSet.
Line 673 ⟶ 675:
select:[:word | (word size > 11) and:[word includesString:'the' caseSensitive:trueOrFalseWhoKnows]]
thenDo:#transcribeCR</lang>
 
if not, then the following:
 
=={{header|Wren}}==
Anonymous user