summaryrefslogtreecommitdiff
path: root/test/local.py
blob: 7d55715336329d6ce97466201aa3c4cccbc8cc5e (plain)
1
2
3
4
5
6
7
8
n = 2

def calc(x):
    m = 4
    return x * n + m

calc(3)