mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
6 lines
63 B
Python
6 lines
63 B
Python
x = 0
|
|
|
|
for i in range(5000000):
|
|
x += 1
|
|
|
|
assert x == 5000000 |