fpc/tests/test/nt.nst.pp
2023-07-26 09:55:12 +02:00

15 lines
130 B
ObjectPascal

unit nt.nst;
interface
Procedure HelloThere;
implementation
Procedure HelloThere;
begin
Writeln('Hello, there');
end;
end.