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

12 lines
107 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
type
Tcl = class
dummy: longint;
end;
var
c1: cl;
begin
c1:=Tcl.create;
...
c1.destroy;
end;