mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +02:00
11 lines
116 B
Python
11 lines
116 B
Python
import bench
|
|
|
|
def func(a):
|
|
pass
|
|
|
|
def test(num):
|
|
for i in iter(range(num)):
|
|
func(i)
|
|
|
|
bench.run(test)
|