RosettaCodeData/Task/Identity-matrix/Red/identity-matrix.red
2023-07-01 13:44:08 -04:00

12 lines
202 B
Text

Red[]
identity-matrix: function [size][
matrix: copy []
repeat i size [
append/only matrix append/dup copy [] 0 size
matrix/:i/:i: 1
]
matrix
]
probe identity-matrix 5