Files
RustPython/tests/benchmarks/perf_add.py
2018-08-04 12:51:12 -04:00

12 lines
131 B
Python

j = 0
while j < 1000:
total = 0
i = 0
while i < 100:
total += i
i += 1
# print(total)
j += 1