[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Confirmation for a potential case that causes an infinite loop
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Sun, 30 Apr 2023 07:47:38 -0300
The main loop below never changes the value of x[1] and never creates
garbage (numbers are not objects).
while x[1] do -- repeat until GC
local a = A -- create garbage
A = A+1
end