circuitpython/tests/internal_bench/loop_count-5-while_down_ne.py
2021-05-03 14:01:18 -07:00

10 lines
85 B
Python

import bench
def test(num):
while num != 0:
num -= 1
bench.run(test)