circuitpython/tests/bench/loop_count-5.1-while_down_n...

11 lines
101 B
Python
Raw Normal View History

import bench
2021-03-15 09:57:36 -04:00
def test(num):
zero = 0
while num != zero:
num -= 1
2021-03-15 09:57:36 -04:00
bench.run(test)