mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
8 lines
85 B
Python
8 lines
85 B
Python
def add_one(x):
|
|
return x + 1
|
|
|
|
i = 0
|
|
while i < 60000:
|
|
i = add_one(i)
|
|
print(i)
|