summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun3.py
blob: f1458df82392e6c1f71f029c102bb81940cb5233 (plain) (blame)
1
2
3
4
5
6
# function with large number of arguments

def fun(a, b, c, d, e, f, g):
    return a + b + c * d + e * f * g

print(fun(1, 2, 3, 4, 5, 6, 7))