10 lines
92 B
Python
10 lines
92 B
Python
import bench
|
|
|
|
|
|
def test(num):
|
|
for i in iter(range(num)):
|
|
pass
|
|
|
|
|
|
bench.run(test)
|