mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 03:28:40 +02:00
16 lines
148 B
ObjectPascal
16 lines
148 B
ObjectPascal
{ %version=1.1}
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
ta = array of longint;
|
|
|
|
function f : ta;
|
|
begin
|
|
setlength(result,10);
|
|
end;
|
|
|
|
begin
|
|
f[1]:=1;
|
|
end.
|