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

6 lines
130 B
Text

> (identity 3)
((1 1 1) (1 1 1) (1 1 1))
> (identity 3 3)
((1 1 1) (1 1 1) (1 1 1))
> (identity '(3 3))
((1 1 1) (1 1 1) (1 1 1))