2 lines
96 B
Text
2 lines
96 B
Text
def lists = [['a','b','c'], ['A','B','C'], [1,2,3]]
|
|
lists.transpose().each{ println it.join() }
|