RosettaCodeData/Task/Array-concatenation/Rye/array-concatenation.rye
2026-04-30 12:34:36 -04:00

5 lines
106 B
Text

arr1: { 1 2 3 4 }
arr2: { "one" "two" "three" "four" }
print concat arr1 arr2
1 2 3 4 one two three four