Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなものは機能しますか?
local a = 2 for i=0, a do i = i + 1 a = a + 1 end
「仕事」を定義します。
Lua は一度だけ値を読み取るため、これは 0 から 2 までループします。式は、最初の 1 回だけ評価されます。その後、それらを見つけたり変更したりできないローカル変数に保存し、そこからテストを行います。