micropython/tests/bench/var-1-constant.py

9 wiersze
95 B
Python

import bench
def test(num):
i = 0
while i < 20000000:
i += 1
bench.run(test)