Words containing "the" substring: Difference between revisions

Content added Content deleted
m (→‎{{header|ALGOL 68}}: corrected comment)
m (→‎{{header|Raku}}: link directly to example)
Line 150: Line 150:


=={{header|Raku}}==
=={{header|Raku}}==
A trivial modification of the [[ABC words]] task.
A trivial modification of the [[ABC_words#Raku|ABC words]] task.


<lang perl6>put 'unixdict.txt'.IO.words».fc.grep({ (.chars > 11) && (.contains: 'the') })\
<lang perl6>put 'unixdict.txt'.IO.words».fc.grep({ (.chars > 11) && (.contains: 'the') })\