mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
Handle control flow for statically true condition in while statement
5 lines
49 B
Python
5 lines
49 B
Python
while True:
|
|
a = 1
|
|
break
|
|
print(a) # pass
|