mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
11 lines
126 B
Python
11 lines
126 B
Python
import sys
|
|
|
|
sys.setrecursionlimit(5000)
|
|
|
|
def f(n):
|
|
if n == 4000:
|
|
return -1
|
|
return f(n + 1)
|
|
|
|
assert f(0) == -1
|