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

22 lines
243 B
ObjectPascal

Unit simple_class_unit;
interface
type
MyClass = class
public
procedure qqq;
begin
writeln('qqq');
end;
constructor Create;
end;
implementation
constructor MyClass.Create;
begin
//inherited Create;
end;
end.