RosettaCodeData/Task/Find-limit-of-recursion/Run-BASIC/find-limit-of-recursion.basic
2023-07-01 13:44:08 -04:00

8 lines
139 B
Text

a = recurTest(1)
function recurTest(n)
if n mod 100000 then cls:print n
if n > 327000 then [ext]
n = recurTest(n+1)
[ext]
end function