mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
7 lines
108 B
Python
7 lines
108 B
Python
for i in range(100):
|
|
for j in range(100):
|
|
print(i, j)
|
|
goto .end
|
|
|
|
label .end
|
|
print("END") |