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

19 lines
275 B
ObjectPascal

procedure p;
var arr,work: array ['à'..'ÿ'] of integer;
begin
arr['á']:=666;
work:=arr;
work['á']:=777;
writeln(arr['á']);
end;
var arr,work: array ['à'..'ÿ'] of integer;
begin
p;
arr['á']:=888;
work:=arr;
work['á']:=999;
writeln(arr['á']);
readln;
end.