Files
RustPython/extra_tests/snippets/syntax_while.py
2022-05-04 02:54:59 +09:00

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