Files
morbidissimo/modman/scripts/test1-sleep.py
T
2021-02-06 12:40:18 +00:00

11 lines
134 B
Python
Executable File

#!/usr/bin/env python
from time import sleep
def run():
print("Test Sleep: start")
sleep(1)
print("Test Sleep: done")