runusb-2/main.py

7 lines
107 B
Python
Raw Normal View History

2023-05-18 23:55:17 +01:00
import time
from itertools import count
for i in count():
print("Still running", i)
time.sleep(1)