Lua 5.1 x = 3 function print_x() print(x) end print_x() --> 3 setfenv(print_x, {print = print, x = 4}) print_x() --> 4 ...
確定! 回上一頁