test.app added

This commit is contained in:
Bart Koolen 2025-10-22 17:36:09 +02:00
parent 83970106b7
commit fed5ac26b5

6
src/test.py Normal file
View file

@ -0,0 +1,6 @@
from time import sleep
for i in range(1,10):
sleep(i)
print(f"Num is: {i}")