circuitpython/tests/bench/func_args-1.1-pos_1.py
2021-03-15 19:27:36 +05:30

14 lines
119 B
Python

import bench
def func(a):
pass
def test(num):
for i in iter(range(num)):
func(i)
bench.run(test)