micropython/tests/bench/loop_count-5-while_down_ne.py

8 wiersze
83 B
Python

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