|
On Mon, May 4, 2009 at 10:05 AM, V S P <toreason@fastmail.fm> wrote:untested:
>
> Hello,
> what's a way to anticipate the last iteration
> in loop over a table
for k, v in pairs (t) do
if next(t,k) == nil then
-- it's the last
end
-- general body
end
--
Javier