RosettaCodeData/Task/Identity-matrix/Groovy/identity-matrix-2.groovy
2023-07-01 13:44:08 -04:00

5 lines
115 B
Groovy

(2..6).each { order ->
def iMatrix = makeIdentityMatrix(order)
iMatrix.each { println it }
println()
}