RosettaCodeData/Task/Memory-allocation/Pascal/memory-allocation-2.pascal
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

11 lines
107 B
Text

type
Tcl = class
dummy: longint;
end;
var
c1: cl;
begin
c1:=Tcl.create;
...
c1.destroy;
end;