3 lines
93 B
Text
3 lines
93 B
Text
def identity( n ) = vector( n, n, \r, c -> if r == c then 1 else 0 )
|
|
|
|
println( identity(3) )
|