local p = {} function p.hello(frame) local name = frame.args[1] if not name then name = 'World' end i = 1 u = "" repeat u = u .. 'Hello' .. name .. '! This is Lua!' i = i + 1 until i > 5 return u end return p