mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
20 lines
265 B
ObjectPascal
20 lines
265 B
ObjectPascal
{ %opt=-Oodfa -Sew }
|
|
{$mode objfpc}
|
|
|
|
type
|
|
tarr = array of longint;
|
|
var
|
|
a: array of longint;
|
|
|
|
function IndexOfValue(const a: tarr; l: longint): longint;
|
|
begin
|
|
for result:=low(a) to high(a) do
|
|
if a[result]=l then
|
|
exit;
|
|
result:=-1;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|