circuitpython/tests/internal_bench/loop_count-1-range.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
86 B
Python
Raw Normal View History

import bench
2021-03-15 19:27:36 +05:30
def test(num):
for i in range(num):
pass
2021-03-15 19:27:36 +05:30
bench.run(test)