Files
RustPython/extra_tests/benchmarks/perf_add.py
2020-09-13 06:58:57 +09:00

9 lines
110 B
Python

j = 0
while j < 1000:
total = 0
i = 0
while i < 100:
total += i
i += 1
j += 1