RosettaCodeData/Task/Memory-allocation/Pascal/memory-allocation-1.pas

10 lines
110 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type
TByteArray = array of byte;
var
A: TByteArray;
begin
setLength(A,1000);
...
setLength(A,0);
end;