Words containing "the" substring: Difference between revisions

Content added Content deleted
(add freebasic)
(→‎{{header|Raku}}: Add a Raku example)
Line 91: Line 91:
weatherstrip
weatherstrip
weatherstripping</pre>
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}}==
=={{header|Ring}}==