mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-12 14:02:10 +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. |