本文介紹Lua 可用的控制結構。 ... if condition then -- Run code here if `condition` is true end ... local i = 1 while i <= 10 do print(i) i = i + 1 end.
確定! 回上一頁