py_test/test.py

12 lines
141 B
Python
Raw Normal View History

2025-10-29 13:11:30 -03:00
from time import sleep
def main():
while True:
print('Hello, World!')
sleep(1)
if __name__ == '__main__':
main()