12 lines
141 B
Python
12 lines
141 B
Python
|
|
from time import sleep
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
while True:
|
||
|
|
print('Hello, World!')
|
||
|
|
sleep(1)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
main()
|