RosettaCodeData/Task/Array-concatenation/Rye/array-concatenation.rye

6 lines
106 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
arr1: { 1 2 3 4 }
arr2: { "one" "two" "three" "four" }
print concat arr1 arr2
1 2 3 4 one two three four