模块:Testluasandbox:修订间差异

来自决策链云智库
无编辑摘要
 
(没有差异)

2023年7月8日 (六) 10:40的最新版本

可在模块:Testluasandbox/doc创建此模块的帮助文档

local p = {}

function p.reverse(frame)
    local input = frame.args[1] or ''
    return input:reverse()
end

return p