mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
let empty_list = [];
|
|
|
|
let concatenated = ["foo"] + ["bar"];
|
|
|
|
assert |
|
|
concatenated == ["foo", "bar"];
|
|
|;
|
|
|
|
assert |
|
|
concatenated + empty_list == ["foo", "bar"];
|
|
|; |