>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