circuitpython/tests/bench/var-3-local.py
2021-03-15 19:27:36 +05:30

12 lines
115 B
Python

import bench
def test(num):
ITERS = 20000000
i = 0
while i < ITERS:
i += 1
bench.run(test)