micropython/tests/internal_bench/func_args-1.1-pos_1.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
119 B
Python
Raw Normal View History

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