mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
19 lines
177 B
ObjectPascal
19 lines
177 B
ObjectPascal
unit uw39543a;
|
|
|
|
interface
|
|
|
|
{$MODE objfpc}
|
|
|
|
uses
|
|
uw39543b;
|
|
|
|
function Test: TVector4;
|
|
|
|
implementation
|
|
|
|
function Test: TVector4;
|
|
begin
|
|
Result := Vector4(1, 2, 3, 4);
|
|
end;
|
|
|
|
end. |