pikapython/examples/builtins/while_true.py
2023-09-26 15:55:22 +08:00

6 lines
43 B
Python

i = 0
while True:
i += 1
print(i)