lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


2009/6/11 Philippe Lhoste <PhiLho@gmx.net>
> Perhaps I am abnormal, but I use both continue and do ... while (or repeat ... until) in languages that allow them. Not necessarily together...

It might be a bit of a hard sell to the Lua authors. If spotlight on
my Mac is to be trusted, there is only one 'continue' statement within
a loop in the whole of the Lua source (in ldblib.c). There are lots of
continues during the gigantic switch statement that is the main
interpreter loop (lvm.c).

Vaughan