6 lines
93 B
Text
6 lines
93 B
Text
var arr1 = [1,2,3]
|
|
var arr2 = [4,5,6]
|
|
for (e in arr2) {
|
|
arr1.add(e)
|
|
}
|
|
System.print(arr1)
|