Re: [ANN] Lua 5.3.0 (work2) now available
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: [ANN] Lua 5.3.0 (work2) now available
- From: Dirk Laurie <dirk.laurie@...>
- Date: 2014年3月26日 14:24:59 +0200
2014年03月26日 14:06 GMT+02:00 David Demelier <demelier.david@gmail.com>:
> I hope you will still reconsider adding continue keyword to Lua and it will
> be perfect.
At present one can already do this:
for i=1,10 do for j=i,10 do
if test1(i,j) then goto out
elseif test2(i,j) then goto next_i
elseif test3(i,j) then goto next_j
end
-- do a lot of work
::next_j:: end
::next_i:: end
::out::
`continue` can replace `goto next_j` only. Not enough to justify a keyword.