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

10 lines
110 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
type
TByteArray = array of byte;
var
A: TByteArray;
begin
setLength(A,1000);
...
setLength(A,0);
end;