5 lines
110 B
Groovy
5 lines
110 B
Groovy
def x = ['a', 'b', 'c']
|
|
def y = ['A', 'B', 'C']
|
|
def z = [1, 2, 3]
|
|
|
|
synchedConcat(x, y, z).each { println it }
|