summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bench/var-2-global.py
blob: 5758ad61aafd993cae951cf84f761a651fa56499 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import bench

ITERS = 20000000

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

bench.run(test)