Dockerfile

This commit is contained in:
Ramón Vásquez 2025-10-29 15:40:52 -03:00
parent 4038adf14d
commit 8c779e180c
3 changed files with 9 additions and 12 deletions

View file

@ -2,9 +2,9 @@ from time import sleep
def main():
while True:
for _ in range(100):
print('Hello, World!')
sleep(1)
sleep(3)
if __name__ == '__main__':