模块:EquipmentInfoList:修订间差异
跳转到导航
跳转到搜索
无编辑摘要 |
无编辑摘要 |
||
| (未显示同一用户的2个中间版本) | |||
| 第2行: | 第2行: | ||
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:42的最新版本
此模块的文档可以在模块:EquipmentInfoList/doc创建
local p = {}
function p.list(frame)
res_table = {}
table.insert(res_table, '123456' )
return table.concat(res_table)
end
return p