lua-users home
lua-l archive

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


If you're doing OO programming in lua, this isn't a problem:

local myObject = {}

function myObject:foo(bar)
  ... self:foo(bar2) ...
end

Steve