lua-users home
lua-l archive

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


On Mon, Aug 29, 2011 at 10:30 PM, Geoff Leyland
<[email protected]> wrote:
> repeat print("A"); continue; local stop = true; until stop

My answer is that the snippet you've given should cause a compilation
error due to the `continue` skipping over a local declaration which is
then used in the `until`.