[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Recursive local functions
- From: Steve Dekorte <steve@...>
- Date: Thu, 4 Jan 2001 10:44:11 -0800
If you're doing OO programming in lua, this isn't a problem:
local myObject = {}
function myObject:foo(bar)
... self:foo(bar2) ...
end
Steve