mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
9 lines
127 B
Python
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 |