lua-users home
lua-l archive

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


> -- for each table I need to move,
> acme={}
> acme.graphics={}
> for k,v in pairs(graphics) do
>      acme.graphics[k] = v
> end
> graphics = nil

This is simpler:
	acme={graphics=graphics}
	graphics=nil