Files
morbidissimo/modman/scripts/test5-infinite-loop.py

15 lines
166 B
Python
Executable File

#!/usr/bin/env python
from time import sleep
def run():
n = 0
while True:
print(f"\tTest Infinite Loop: {n}")
n += 1
sleep(0.3)