mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 23:08:08 +02:00
15 lines
123 B
ObjectPascal
15 lines
123 B
ObjectPascal
unit nt2.a;
|
|
|
|
interface
|
|
|
|
Function GetIt : String;
|
|
|
|
implementation
|
|
|
|
Function GetIt : String;
|
|
|
|
begin
|
|
getit:='a2';
|
|
end;
|
|
|
|
end. |