[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: newbee question...
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 20 Oct 2000 23:27:42 -0200 (EDT)
>'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