mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-18 16:19:24 +01:00
20 lines
192 B
ObjectPascal
20 lines
192 B
ObjectPascal
unit ub0421c;
|
|
interface
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
cl1=class
|
|
f1:longint;
|
|
constructor create;
|
|
end;
|
|
|
|
implementation
|
|
|
|
constructor cl1.create;
|
|
begin
|
|
f1 := 10;
|
|
end;
|
|
|
|
end.
|
|
|