mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
11 lines
166 B
Python
11 lines
166 B
Python
def foo():
|
|
sum = 0
|
|
for i in range(10):
|
|
sum += i
|
|
for j in range(10):
|
|
sum += j
|
|
break
|
|
return sum
|
|
|
|
assert foo() == 45
|