mirror of
https://github.com/Unitech/pm2.git
synced 2026-01-18 16:03:48 +00:00
8 lines
122 B
Python
8 lines
122 B
Python
#!/usr/bin/python
|
|
import time
|
|
|
|
while 1:
|
|
print("Start : %s" % time.ctime())
|
|
print("second line")
|
|
time.sleep(1)
|