summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun2.py
blob: a3c3e7babf46f1a6da349872ad37e4a3d710ccd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# calling a function from a function

def f(x):
    print(x + 1)

def g(x):
    f(2 * x)
    f(4 * x)

g(3)