Words from neighbour ones: Difference between revisions

Content added Content deleted
(Added Delphi example)
Line 574: Line 574:


=={{header|Phix}}==
=={{header|Phix}}==
Oh gosh, this is all rather new and exciting....
<lang Phix>function over9(string word) return length(word)>=9 end function
<lang Phix>function over9(string word) return length(word)>=9 end function
sequence dictionary = filter(get_text("demo/unixdict.txt",GT_LF_STRIPPED),over9)
sequence dictionary = filter(get_text("demo/unixdict.txt",GT_LF_STRIPPED),over9)