mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 06:06:18 +07:00
9 lines
155 B
Python
9 lines
155 B
Python
import time
|
|
if __name__ == '__main__':
|
|
for i in range(10):
|
|
print('here %s' % i)
|
|
time.sleep(1)
|
|
|
|
print('TEST SUCEEDED')
|
|
|