5 lines
106 B
Text
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
|