Infinite loop



examples/strings/infinite_loop.py
i = 0
while True:
    i += 1
    print(i)

print("done")