mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-05 03:10:31 +01:00
10 lines
98 B
ObjectPascal
10 lines
98 B
ObjectPascal
{$mode objfpc}
|
|
|
|
program tarrconstr9;
|
|
|
|
var
|
|
a: array[0..2] of integer;
|
|
begin
|
|
a := [1,2,3];
|
|
end.
|