circuitpython/tests/bench/loop_count-5-while_down_ne.py
Scott Shawcroft b057fb8a4b
codeformat
2021-04-19 22:22:44 -07:00

10 lines
85 B
Python

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