hi there
is there a way to clean up the variables that arent' used anymore?
like if i have an array arr, and i have
arr(nick1) = 10
arr(nick2) = 2
... and so on
after a certain time i don't care about arr(nick1) so i want to remove it's info, to save memory
how can this be done...
thanks