mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-05 06:50:36 +01: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. |