summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/fun3.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/fun3.py')
-rw-r--r--tests/basics/fun3.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/basics/fun3.py b/tests/basics/fun3.py
new file mode 100644
index 0000000000..f1458df823
--- /dev/null
+++ b/tests/basics/fun3.py
@@ -0,0 +1,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))