14 lines
121 B
Python
14 lines
121 B
Python
import bench
|
|
|
|
|
|
def func(a):
|
|
pass
|
|
|
|
|
|
def test(num):
|
|
for i in iter(range(num)):
|
|
func(a=i)
|
|
|
|
|
|
bench.run(test)
|