Quick question: Do I have to nil out all variables after use? Do they hold onto memory?
e.g
function something ( myVar )
newVar = myVar + 1
… more code here
myVar = nil – is this necessary?
newVar = nil - is this necessary?
end
or do they die at the end of a function anyway?
If they are not in a function, do I need to destroy them as well? [import]uid: 49842 topic_id: 11544 reply_id: 311544[/import]