mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:07:57 +02:00
9 lines
87 B
ObjectPascal
9 lines
87 B
ObjectPascal
var
|
|
a : array[boolean] of longint;
|
|
|
|
begin
|
|
a[true]:=1234;
|
|
a[false]:=123;
|
|
end.
|
|
|