mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 02:39:27 +02:00
11 lines
143 B
ObjectPascal
11 lines
143 B
ObjectPascal
unit uw37095;
|
|
interface
|
|
procedure UnitHello;
|
|
implementation
|
|
procedure UnitHello;
|
|
begin
|
|
writeln('"Hello, unit."');
|
|
end;
|
|
begin
|
|
end.
|