+ 1
How clear variable's memory?
for example i define variable text="some thing". this variable get any volume of memory on ram or anything. i want clear this volume. How?
2 Answers
+ 1
hi you can use the keywoed del <varname> this will be delete your variable from memory. in your case del text
0
yes it is. tanks alot.