11 lines
149 B
Python
Executable File
11 lines
149 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from time import sleep
|
|
|
|
def run():
|
|
print("\tTest Sleep Long: start")
|
|
sleep(10)
|
|
print("\tTest Sleep Long: done")
|
|
|
|
|