mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
17 lines
179 B
ObjectPascal
17 lines
179 B
ObjectPascal
{$mode delphi}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
var
|
|
a:array of integer;
|
|
begin
|
|
a := nil;
|
|
SetLength(a,3);
|
|
a[0] := 0;
|
|
a[1] := 1;
|
|
a[2] := 2;
|
|
WriteLn(IntToStr(a[0]));
|
|
a := nil;
|
|
end.
|