mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 23:49:28 +02: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.
|