lua-users home
lua-l archive

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


> i think the 'table as iterator' idiom is history too.

Yes. Replace "for k,v in t" by "for k,v in pairs(t)" or "for k,v in next,t" .
--lhf