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

15 lines
143 B
ObjectPascal

unit nt2.nst2;
interface
Procedure HelloThereToo;
implementation
Procedure HelloThereToo;
begin
Writeln('Hello, there too!');
end;
end.