lua-users home
lua-l archive

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


> What happens to a table when I set the variable to nil. 
> 
> [LUA]
> Rain={x=5, y=30, z=0}
> Rain=nil

The previous contents of Rain will be garbage collected.

Josh