5 lines
76 B
Forth
5 lines
76 B
Forth
|
|
let x = [1; 2; 3]
|
||
|
|
let y = [4; 5; 6]
|
||
|
|
let z1 = x @ y
|
||
|
|
let z2 = List.append x y
|