summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/basics/tests/list2.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/basics/tests/list2.py b/tests/basics/tests/list2.py
new file mode 100644
index 000000000..e46042b86
--- /dev/null
+++ b/tests/basics/tests/list2.py
@@ -0,0 +1,5 @@
+# list addition
+a = [1,2,3]
+b = [4,5,6]
+c = a + b
+print(c)