pocketpy/tests/_goto.py
blueloveTH 26b065c1fb up
2022-12-10 02:51:14 +08:00

19 lines
264 B
Python

a = []
for i in range(10):
for j in range(10):
goto .test
print(2)
label .test
a.append(i)
assert a == list(range(10))
b = False
for i in range(10):
for j in range(10):
goto .out
b = True
label .out
assert not b