Find words with alternating vowels and consonants: Difference between revisions

m
m (Swift - use forEach instead of for loop)
Line 1,440:
 
=={{header|Phix}}==
Not even slightly challenging, or in any way possibly ever useful, or the slightest bit interesting.... Yawneroo.
<lang Phix>function odd(integer idx) return remainder(idx,2)=1 end function
function vowel(integer ch) return find(ch,"aeiou")!=0 end function
7,794

edits