Skip to content

Commit

Permalink
fixes #607
Browse files Browse the repository at this point in the history
  • Loading branch information
shanemacbride committed Oct 19, 2017
1 parent b9913e3 commit dca81ac
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions oodle/oodle.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

local oodle = ""

for c in arg[1]:gmatch"." do
if (c == "a") or (c == "e") or (c == "i") or (c == "o") or (c == "u") then
oodle = oodle .. "oodle"
else
oodle = oodle .. c
end
end

print(oodle)

0 comments on commit dca81ac

Please sign in to comment.