4 lines
93 B
Text
4 lines
93 B
Text
def callback(index, value) {
|
|
println(`Item $index is $value.`)
|
|
}
|
|
array.iterate(callback)
|