Files
RustPython/tests/benchmarks/perf_add.py
Tommaso Thea Cioni d7187d426c Cleaned up two tests.
2019-08-22 03:11:51 +02:00

9 lines
110 B
Python

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