Changeable words: Difference between revisions

Content deleted Content added
Petelomax (talk | contribs)
Petelomax (talk | contribs)
m →‎{{header|Phix}}: use GT_LF_STRIPPED
Line 292: Line 292:


function over11(string word) return length(word)>11 end function
function over11(string word) return length(word)>11 end function
sequence words = filter(split_any(get_text("demo/unixdict.txt")," \r\n"),over11),
sequence words = filter(get_text("demo/unixdict.txt",GT_LF_STRIPPED),over11),
res = {}
res = {}
for i=1 to length(words) do
for i=1 to length(words) do