mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:28:14 +02:00
21 lines
215 B
ObjectPascal
21 lines
215 B
ObjectPascal
unit uw25059.test;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
function ExecuteTest(): Integer;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uw25059,
|
|
uw25059.withdot;
|
|
|
|
function ExecuteTest(): Integer;
|
|
begin
|
|
Result := uw25059.GetValue();
|
|
end;
|
|
|
|
end.
|