PythonExtra/tests/internal_bench/loop_count-4-while_down_gt.py

10 lines
84 B
Python

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