|
On Thu, Jul 17, 2008 at 11:06 AM, Michael Gerbracht <smartmails@arcor.de> wrote: > local t = {} > t = pack(test()) > print(t[2]) t={test()} but beware of nil values.... BTW, in your example you don't need to set t={} first, since that table would be forgotten when you reassign t just on the next line. -- Javier