5 lines
78 B
Ada
5 lines
78 B
Ada
|
|
type Matrix is array (0..99, 1..10) of Integer;
|
||
|
|
M : Matrix;
|
||
|
|
...
|
||
|
|
M(1,2) := 10;
|