Find limit of recursion: Difference between revisions

Content deleted Content added
Need to start a coroutine
Line 71:
}
function x() {
if (n > 999999) { return }
print(++n)
if (n > 999999) { return }
x()
}