可在模块:Testluasandbox/doc创建此模块的帮助文档
local p = {} function p.reverse(frame) local input = frame.args[1] or '' return input:reverse() end return p