[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Porting another scripting language programs to Lua
- From: "Marius Gheorghe" <mgheorghe@...>
- Date: Mon, 15 Sep 2003 11:35:25 -0400
> > 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