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
Jake Howard ce29af5459
Use custom program rather than yes
Yes may be too IO intensive, and may not exist on all systems
2018-12-13 14:06:47 +00:00

10 lines
186 B
Python
Executable file

#!/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()