4 lines
95 B
Text
4 lines
95 B
Text
(let a [1 2 3])
|
|
(let b [4 5 6])
|
|
|
|
(assert (= (concat a b) [1 2 3 4 5 6]) "array concatenation")
|