This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/tests/dummy_program.py

9 lines
153 B
Python
Raw Normal View History

#!/usr/bin/env python3
import time
from itertools import count
for num in count():
time.sleep(0.5)
2018-12-13 16:52:37 +00:00
print("Round {}".format(num)) # noqa: T001