5 lines
115 B
Groovy
5 lines
115 B
Groovy
(2..6).each { order ->
|
|
def iMatrix = makeIdentityMatrix(order)
|
|
iMatrix.each { println it }
|
|
println()
|
|
}
|