function test(x) print(y) -- (prints nil) local y = x^2 + 10 local z = y^2 -- within scope of y print(y) -- within scope of y and z (prints 14) print(z) ...
確定! 回上一頁