Find limit of recursion: Difference between revisions

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