8 lines
107 B
Python
8 lines
107 B
Python
import time
|
|
|
|
print("App Started. Ctrl C to stop")
|
|
|
|
while True:
|
|
time.sleep(5)
|
|
print("app still here")
|