pascalabcnet/TestSamples/CompilationSamples/test_array_indexer.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

6 lines
83 B
ObjectPascal

var a: array [1..10,1..10] of integer;
begin
a[1,2]:=10;
writeln(a[1,2]);
end.