mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 19:38:50 +07:00
9 lines
173 B
Python
9 lines
173 B
Python
def foo(cur_1):
|
|
cur_2 = cur_1
|
|
cur = cur_2
|
|
while True:
|
|
if smth:
|
|
cur += 1
|
|
print("Cur = %s" % cur)
|
|
if htms:
|
|
cur += 1 |