mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 17:59:26 +02:00
12 lines
126 B
ObjectPascal
12 lines
126 B
ObjectPascal
{$mode delphi}
|
|
|
|
var
|
|
a1 : Array of Byte;
|
|
|
|
begin
|
|
SetLength(a1,2);
|
|
a1[0]:=65;
|
|
a1[1]:=66;
|
|
WriteLn(AnsiString(a1));
|
|
end.
|