mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-24 01:16:04 +02:00
17 lines
149 B
ObjectPascal
17 lines
149 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.
|
|
|