mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
14 lines
146 B
Python
14 lines
146 B
Python
# i = 0
|
|
# while i < 5:
|
|
# i += 1
|
|
# # print(i)
|
|
# assert i == 5
|
|
|
|
i = 0
|
|
while i < 5:
|
|
i += 1
|
|
# print(i)
|
|
if i == 3:
|
|
break
|
|
assert i == 3
|