Files
Core2forAWS-MicroPython/tests/bench/loop_count-3-while_up.py
T

9 lines
90 B
Python
Raw Normal View History

import bench
def test(num):
i = 0
while i < num:
i += 1
bench.run(test)