mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:08:05 +02:00
20 lines
191 B
ObjectPascal
20 lines
191 B
ObjectPascal
unit ub0421c;
|
|
interface
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
cl1=class
|
|
f1:longint;
|
|
constructor create;
|
|
end;
|
|
|
|
implementation
|
|
|
|
constructor cl1.create;
|
|
begin
|
|
f1 := 10;
|
|
end;
|
|
|
|
end.
|