5 lines
79 B
Python
5 lines
79 B
Python
import time
|
|
|
|
while True:
|
|
print('Hello World...')
|
|
time.sleep(10) |