mirror of
https://github.com/openzim/zimit.git
synced 2025-12-31 04:23:15 +00:00
6 lines
86 B
Python
6 lines
86 B
Python
#! /use/bin/python
|
|
import time
|
|
|
|
for i in range(100):
|
|
time.sleep(0.2)
|
|
print i
|