Infinite loop
❮ Command line arguments and main break ❯
examples/strings/infinite_loop.py
i = 0 while True: i += 1 print(i) print("done")