kopia lustrzana https://github.com/micropython/micropython
11 wiersze
114 B
Python
11 wiersze
114 B
Python
|
import bench
|
||
|
|
||
|
|
||
|
def test(num):
|
||
|
ITERS = 20000000
|
||
|
i = 0
|
||
|
while i < ITERS:
|
||
|
i += 1
|
||
|
|
||
|
bench.run(test)
|