lua-users home
lua-l archive

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


> > Is there any Lua programming idiom that could be used to
> emulate goto
> > behaviour [...]?
>
> You can try tail calls.

Interesting concept, thank you.

Unfortunately, in my case, I don't need goto's to program from scratch but
to (automatically) convert from a different scripting language. At a first
glance, using tail calls seems to complicate my conversion.

Marius