mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
7 lines
84 B
Python
7 lines
84 B
Python
def f(n):
|
|
if n == 900:
|
|
return -1
|
|
return f(n + 1)
|
|
|
|
assert f(0) == -1
|