RosettaCodeData/Task/Array-concatenation/Langur/array-concatenation.langur

5 lines
66 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
val .a = [1, 2, 3]
val .b = [7, 8, 9]
val .c = .a ~ .b
writeln .c