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

13 lines
116 B
ObjectPascal

type
Point=record
x,y:integer;
end;
var p:Point;
begin
p.x:=1;
p.y:=2;
writeln(p.x);
readln;
end.