2022-11-14 23:51:11 +08:00

9 lines
127 B
Python

for i in range(10):
for j in range(10):
goto .test
print(2)
label .test
print(i)
# 15, 23
# 5, 28