mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
15 lines
130 B
ObjectPascal
15 lines
130 B
ObjectPascal
unit nt.nst;
|
|
|
|
interface
|
|
|
|
Procedure HelloThere;
|
|
|
|
implementation
|
|
|
|
Procedure HelloThere;
|
|
|
|
begin
|
|
Writeln('Hello, there');
|
|
end;
|
|
|
|
end. |