mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:48:01 +02:00
17 lines
151 B
ObjectPascal
17 lines
151 B
ObjectPascal
unit uw25059;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
function GetValue(): Integer;
|
|
|
|
implementation
|
|
|
|
function GetValue(): Integer;
|
|
begin
|
|
Result := 1;
|
|
end;
|
|
|
|
end.
|