[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: how to write command for unlimited time
- From: Sean Conner <sean@...>
- Date: Thu, 2 Mar 2023 04:22:55 -0500
Why not chime in with this?
local function foo()
...
return foo()
end
Because Lua does tail-call optimization, this won't blow the stack.
-spc