mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 17:38:06 +02:00
15 lines
122 B
ObjectPascal
15 lines
122 B
ObjectPascal
unit nt.a;
|
|
|
|
interface
|
|
|
|
Function GetIt : String;
|
|
|
|
implementation
|
|
|
|
Function GetIt : String;
|
|
|
|
begin
|
|
getit:='a1';
|
|
end;
|
|
|
|
end. |