mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:28:08 +02:00
25 lines
292 B
ObjectPascal
25 lines
292 B
ObjectPascal
{ Old file: tbs0139a.pp }
|
|
{ }
|
|
|
|
unit ub0119;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
SomeClass=class(TObject)
|
|
protected
|
|
procedure doSomething; virtual;
|
|
end ;
|
|
|
|
implementation
|
|
|
|
|
|
procedure SomeClass.doSomething;
|
|
begin
|
|
Writeln ('Hello from SomeClass.DoSomething');
|
|
end ;
|
|
|
|
end.
|