Hi,
In message "Re: How to clean out my stack"
on Sat, 25 Sep 2004 03:10:03 +0900, "Phlip" <phlip_cpp / yahoo.com> writes:
|So, how to clean up a local stack?
How about wrapping user code in the non-iterating block?
E.g.
loop {
..user code..
break
}
The local variables defined within a block will disappear, when the
block execution terminated.
matz.