mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 21:29:43 +02:00
12 lines
162 B
ObjectPascal
12 lines
162 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
Var
|
|
LOut : array of Byte;
|
|
LLength, LSSize : integer;
|
|
begin
|
|
SetLength(LOut, 1+LLength+1+4+4+2+4+4+2+LSSize+2);
|
|
end.
|
|
|