lua-users home
lua-l archive

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


>'x = nil' does not affect the table x refers to, it merely reduces the number of
>references to that table (by one).

Lua does not use reference counting; it uses mark-and-sweep.
--lhf