创建页面,内容为“local p = {} function p.hello() return "Hello World" end return p” |
无编辑摘要 |
||
第1行: | 第1行: | ||
local p = {} | local p = {} | ||
function p. | function p.add(frame) | ||
return | return tonumber(frame.args[1]) + tonumber(frame.args[2]) | ||
end | end | ||
return p | return p |