- Jan 15, 2005
- 4,327
- 1
- 0
Recursive adj. See Recursive
Recursion n. A formula that generates the successive terms of a recursion.
How about recursion_call(i-1) so that we don't get stuck in an infinate loop? Or else I could just dorecursion_call(i){
__if (i=0) return;
__recursion_call(i+1);
__}
Originally posted by: The Pentium Guy
Isn't there a rule that the first person to reply to every thread always posts a useless comment?
yeahOriginally posted by: veloc1ty
Originally posted by: The Pentium Guy
Isn't there a rule that the first person to reply to every thread always posts a useless comment?
link?