执行以下Lua代码: i = 32 local i = 0 f = load("i = i + 1; print(i)") g = function () i = i + 1; print(i) end f() --> 33 g() --> 1 f()输出33 ...
確定! 回上一頁