Find words with alternating vowels and consonants: Difference between revisions

Content deleted Content added
Thundergnat (talk | contribs)
m →‎{{header|Raku}}: sigh, more typos
Wherrera (talk | contribs)
mNo edit summary
Line 349: Line 349:
shown += 1
shown += 1
print(rpad(word, colwidth), shown % numcols == 0 ? "\n" : "")
print(rpad(word, colwidth), shown % numcols == 0 ? "\n" : "")
toshow > 0 && toshow < shown && break
toshow > 0 && toshow <= shown && break
end
end
end
end