Quote:
Originally Posted by cbkbud
Because there's no point in taking up memory when this doesn't need to be stored past this function.
If you knew GS1, it's basically equivelant to a variable with no prefix, which is lost after the function is over
|
temp variables still take up memory, it's just stored on the stack versus the heap. Variables defined with no prefix are global, they act now as they did in GS1 for backwards compatibility.