pocketpy/benchmarks/loop_2.py
blueloveTH 8433d40f2c up
2023-02-19 22:05:19 +08:00

6 lines
65 B
Python

x = 0
for i in range(10000000):
x += 1
assert x == 10000000