>>1533512>endlessly chainingDifferent methods?
Because instances doesn't sound complicated at all using recursion.
You can easily start any n functions by doing
void recur(int i, int n){
if(i < n) recur(i+1, n);
}
Now call recur(1,n).
of course endlessly is even easier
void recur(){
recur();
}