此模块的文档可以在模块:BasicTest/doc创建
local p = {} function p.addTest() return "1 + 2 = " .. tostring(1 + 2) -- 验证数学运算 end function p.stringTest() local str = "LuaSandbox" return "字符串反转:" .. string.reverse(str) -- 验证字符串库功能 end return p