Words containing "the" substring: Difference between revisions

→‎{{header|Raku}}: Add a Raku example
(add freebasic)
(→‎{{header|Raku}}: Add a Raku example)
Line 91:
weatherstrip
weatherstripping</pre>
 
=={{header|Raku}}==
A trivial modification of the [[ABC words]] task.
 
<lang perl6>put 'unixdict.txt'.IO.words».fc.grep({ (.chars > 11) && (.contains: 'the') })\
.&{"{+$_} words:\n " ~ .batch(8)».fmt('%-17s').join: "\n "};</lang>
{{out}}
<pre>32 words:
authenticate chemotherapy chrysanthemum clothesbrush clotheshorse eratosthenes featherbedding featherbrain
featherweight gaithersburg hydrothermal lighthearted mathematician neurasthenic nevertheless northeastern
northernmost otherworldly parasympathetic physiotherapist physiotherapy psychotherapeutic psychotherapist psychotherapy
radiotherapy southeastern southernmost theoretician weatherbeaten weatherproof weatherstrip weatherstripping </pre>
 
=={{header|Ring}}==
10,333

edits