mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 10:20:52 +02:00
9 lines
99 B
Python
9 lines
99 B
Python
import bench
|
|
|
|
def test(num):
|
|
zero = 0
|
|
while num != zero:
|
|
num -= 1
|
|
|
|
bench.run(test)
|