mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
6 lines
65 B
Python
6 lines
65 B
Python
x = 0
|
|
|
|
for i in range(10000000):
|
|
x += 1
|
|
|
|
assert x == 10000000 |