added infinite loop test script
This commit is contained in:
14
modman/scripts/test5-infinite-loop.py
Executable file
14
modman/scripts/test5-infinite-loop.py
Executable 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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user