Recursive Function - Just keep last result

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to keep the result only of the last run of the function.
I know when the last run is so I would like to some how place the last run
results as it were the first runs result ?
 
nach said:
I would like to keep the result only of the last run of the function.
I know when the last run is so I would like to some how place the
last run results as it were the first runs result ?

I think you'd better expand on this a bit if you want anybody to
understand what you mean. Are you truly talking about a recursive
function, one that calls itself? If so, I fail to see how there is an
issue in distinguishing the "last run results" from the "first runs
result". Maybe you'd better post the function, or at least the relevant
parts of it, and eplain how you are calling it.
 
Back
Top