4 lines
68 B
Python
4 lines
68 B
Python
import time
|
|
while True:
|
|
print("Hello, World!")
|
|
time.sleep(1) |