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

10 lines
119 B
ObjectPascal

var
a,b: array ['1'..'5'] of integer;
begin
a['1'] := 5;
b := a;
b['1'] := 6;
write(a['1']);
readln;
end.