diff options
| author | John R. Lenton | 2014-01-03 02:27:08 +0000 |
|---|---|---|
| committer | John R. Lenton | 2014-01-03 02:27:08 +0000 |
| commit | 4cb80582c4154f59118eab902872ab0c3a496303 (patch) | |
| tree | 481f2cfa51c1efaee93118a3fc28bc755af504e0 /tests/basics | |
| parent | aae7847508e2a9555ad3276c5cd4f42b2e66686c (diff) | |
Add list addition (fixes: #39)
Diffstat (limited to 'tests/basics')
| -rw-r--r-- | tests/basics/tests/list2.py | 5 |
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) |
