diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-07-25T15·05+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-07-25T15·05+0000 |
commit | 991a130b1e71b3b849b3640264f8834d6e13da22 (patch) | |
tree | 1e99a52b73043814fa501c8d470a933d2bc7cded /tests/lang | |
parent | e6899794ae9ce3924b818721d5caff463bccd60c (diff) |
* Added a list concatenation operator:
[1 2 3] ++ [4 5 6] => [1 2 3 4 5 6]
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-concat.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-concat.nix | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-concat.exp b/tests/lang/eval-okay-concat.exp new file mode 100644 index 000000000000..359ccef86f0f --- /dev/null +++ b/tests/lang/eval-okay-concat.exp @@ -0,0 +1 @@ +List([Int(1),Int(2),Int(3),Int(4),Int(5),Int(6),Int(7),Int(8),Int(9)]) diff --git a/tests/lang/eval-okay-concat.nix b/tests/lang/eval-okay-concat.nix new file mode 100644 index 000000000000..d158a9bf05b9 --- /dev/null +++ b/tests/lang/eval-okay-concat.nix @@ -0,0 +1 @@ +[1 2 3] ++ [4 5 6] ++ [7 8 9] |