lua-users home
lua-l archive

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


function test(y)
  local t = {} --here t is local to funcion test
  y.my = t
end 

x = {}
test(x) --here whether x.my is still valid?

Kindly note -- line.
Thanking you,