“模块:Loop”的版本间的差异
来自小鱼君和他的朋友们
(创建页面,内容为“local p = {} p.main = function() return 'hello world' end return p”) |
([InPageEdit] 没有编辑摘要) |
||
第1行: | 第1行: | ||
local p = {} | local p = {} | ||
+ | local getArgs = require('Module:Arguments').getArgs | ||
− | p.main | + | function p.main(frames) |
return 'hello world' | return 'hello world' | ||
end | end | ||
return p | return p |
2020年5月7日 (四) 15:18的最新版本
local p = {} local getArgs = require('Module:Arguments').getArgs function p.main(frames) return 'hello world' end return p