RosettaCodeData/Task/Identity-matrix/LFE/identity-matrix-2.lfe

7 lines
130 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
> (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))