mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-23 11:07:17 +01: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. |