lua-users home
lua-l archive

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



On Jun 11, 2009, at 12:30 PM, Philippe Lhoste wrote:

Perhaps I am abnormal, but I use both continue and do ... while (or repeat ... until) in languages that allow them. Not necessarily together...

Perhaps I'm abnormal as well, but at least in Lua, I tend to avoid while/repeat/break/etc and instead favor 'for' loop with a custom iterator that "does the right thing" (sm)...