Variables · -- variable scope https://www.lua.org/pil/4.2.html if true then local x = 4 print(x) -- 4 end print(x) -- nil (out of scope) · local y = 10 local z -- ...
確定! 回上一頁