Files
RustPython/vm/tests/for.py
2018-06-06 23:30:48 +02:00

7 lines
53 B
Python

x = 0
for i in [1,2,3,4]:
x += 1
assert x == 4