function test(money) for i=1,0.1,-0.1 do if tonumber(money) >= tonumber(i*9) then return i end end return 0 end
print(test(0.9)) //执行结果 0print(_VERSION) //执行结果 Lua 5.3//输出结果0 预期结果应该是0.1才对吧
求大佬解释解释,