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

5 lines
60 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
val a = [1, 2, 3]
val b = [7, 8, 9]
val c = a ~ b
writeln c