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

21 lines
265 B
ObjectPascal

type
c=class
const z = 'z';
private const x:real = 10;
public const y = 10+x;
procedure p;
begin
writeln(x);
writeln(y);
writeln(z);
end;
end;
var cc:c;
begin
writeln(c.x);
cc := new c;
cc.p;
readln;
end.