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

13 lines
154 B
ObjectPascal

type
c=class
x:integer;
property xp:integer read x write x;
end;
var cc:c;
begin
cc:=new c;
cc.xp:=10;
writeln(cc.xp);
readln;
end.