Words containing "the" substring: Difference between revisions

m
→‎{{header|Raku}}: link directly to example
m (→‎{{header|ALGOL 68}}: corrected comment)
m (→‎{{header|Raku}}: link directly to example)
Line 150:
 
=={{header|Raku}}==
A trivial modification of the [[ABC_words#Raku|ABC words]] task.
 
<lang perl6>put 'unixdict.txt'.IO.words».fc.grep({ (.chars > 11) && (.contains: 'the') })\
10,333

edits