First commit

This commit is contained in:
Ramón Vásquez 2025-10-29 13:11:30 -03:00
commit a5150cac16
2 changed files with 23 additions and 0 deletions

11
test.py Normal file
View file

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