lua-users home
lua-l archive

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


>When I do this:
>  myTbl = { }
>  myTbl()
>
>
>I get this:
>  table
>  0

That's right. The table you're getting is the empty table (the value of myTbl).

Try myTbl(10,20,30).
The "function" tag method will receive myTbl, 10, 20, 30 on the stack.

--lhf