RosettaCodeData/Task/Array-concatenation/11l/array-concatenation.11l

4 lines
59 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
V arr1 = [1, 2, 3]
V arr2 = [4, 5, 6]
print(arr1 [+] arr2)