added infinite loop test script

This commit is contained in:
2021-02-08 10:05:13 +00:00
parent 089da79074
commit 338a14d3cb

View File

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