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

11 lines
186 B
Python
Raw Normal View History

#!/usr/bin/env python3
import sys
import time
from itertools import count
for num in count():
time.sleep(0.5)
sys.stdout.write("Round {}\n".format(num))
sys.stdout.flush()