mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
8 lines
152 B
Python
8 lines
152 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
while True:
|
|
print("Processing")
|
|
if value is not None:
|
|
continue
|
|
print("None") |