模块:EventShopList:修订间差异

来自70DNF
跳转到导航 跳转到搜索
AdminAPT留言 | 贡献
创建页面,内容为“local p = {} function p.list(frame) res_table = {} table.insert(res_table, '123456' ) return table.concat(res_table) end return p”
 
AdminAPT留言 | 贡献
无编辑摘要
 
第3行: 第3行:
function p.list(frame)
function p.list(frame)
     res_table = {}
     res_table = {}
    table.insert(res_table, '123456' )
 
     return table.concat(res_table)
     return table.concat(res_table)
end
end


return p
return p

2025年12月22日 (一) 06:45的最新版本

此模块的文档可以在模块:EventShopList/doc创建

local p = {}

function p.list(frame)
    res_table = {}

    return table.concat(res_table)
end

return p