docs here
function(x) return x + 1 end
local p = {} function p.hello(frame) return 'Hello from Lua' end function p.argument(frame) s = "<pre>\n" for k, v in pairs(frame.args) do s = s .. k .. " = " .. v .. "\n" end return s .. "\n</pre>" end return p