mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
16 lines
158 B
ObjectPascal
16 lines
158 B
ObjectPascal
type
|
|
tarraysingle = array[0..1] of single;
|
|
|
|
procedure test(var a : tarraysingle);
|
|
|
|
var
|
|
i,j,k : integer;
|
|
|
|
begin
|
|
a[i]:=a[j]-a[k];
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|