Re: I'd give my right arm for a continue statement
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: I'd give my right arm for a continue statement
- From: Renato Maia <maia@...>
- Date: 2011年1月25日 11:22:21 -0200
On 23 Jan 2011, at 17:18, Shmuel Zeigerman wrote:
And what if `continue' is needed from within deeply nested blocks?
Even with depth of 2 (as in an example below) there's no simple
replacement to it.
while condition do
-- some code
if test1 then
-- more code
if test2 then
continue
end
-- more code
end
-- more code
end
Lucky you this code is inside a loop. ;-)
--
Renato Maia
Computer Scientist
Tecgraf/PUC-Rio
__________________________
http://www.inf.puc-rio.br/~maia/
- References:
- Re: I'd give my right arm for a continue statement, steve donovan
- Re: I'd give my right arm for a continue statement, HyperHacker
- Re: I'd give my right arm for a continue statement, Michal Kottman
- Re: I'd give my right arm for a continue statement, steve donovan
- Re: I'd give my right arm for a continue statement, Axel Kittenberger
- Re: I'd give my right arm for a continue statement, David Kastrup
- Re: I'd give my right arm for a continue statement, GrayFace
- Re: I'd give my right arm for a continue statement, T T
- Re: I'd give my right arm for a continue statement, David Kastrup
- Re: I'd give my right arm for a continue statement, Mark Hamburg
- Re: I'd give my right arm for a continue statement, Dirk Laurie
- Re: I'd give my right arm for a continue statement, Shmuel Zeigerman