mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:29:34 +02:00
15 lines
143 B
ObjectPascal
15 lines
143 B
ObjectPascal
unit nt2.nst2;
|
|
|
|
interface
|
|
|
|
Procedure HelloThereToo;
|
|
|
|
implementation
|
|
|
|
Procedure HelloThereToo;
|
|
|
|
begin
|
|
Writeln('Hello, there too!');
|
|
end;
|
|
|
|
end. |