summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/var-1-constant.py
blob: eec977909cd0889786a8059900d003289dfc0398 (plain) (blame)
1
2
3
4
5
6
7
8
import bench

def test(num):
    i = 0
    while i < 20000000:
        i += 1

bench.run(test)