diff --git a/oodle/oodle.lua b/oodle/oodle.lua new file mode 100644 index 000000000..ea446d8e6 --- /dev/null +++ b/oodle/oodle.lua @@ -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) +