local p = {}
function p.hello(frame)
local name = frame.args[1] if not name then name = 'Welt' end return 'Hallo, ' .. name .. '! Dies ist Lua2 test!'
end
return p