8 lines
139 B
Text
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
|