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

11 lines
91 B
ObjectPascal

type TClass = class
a : integer;
end;
begin
with TClass.Create do
begin
a := 3;
end;
end.