C programmers think memory management is too important to be left to the computer. Lisp programmers think memory management is too important to be left to the user.
discuss!
Name:
Anonymous2010-02-15 3:22
>>15
I do this but for a different reason. I don't leak if it will cause the program to crash, but it is a waste of cpu time to free resources. it is better to let them leak. when the process is done, then the os will free them anyways, so i just hold onto em until im dont with my program to make it faster.