mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 15:03:36 +07:00
9 lines
149 B
Python
9 lines
149 B
Python
import time
|
|
if __name__ == '__main__':
|
|
for i in range(15):
|
|
print('here')
|
|
time.sleep(.2)
|
|
|
|
print('TEST SUCEEDED')
|
|
|