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

ITERS = 20000000


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


bench.run(test)