py_test/test.py
2025-10-29 13:11:30 -03:00

11 lines
141 B
Python

from time import sleep
def main():
while True:
print('Hello, World!')
sleep(1)
if __name__ == '__main__':
main()