8 lines
76 B
Plaintext
8 lines
76 B
Plaintext
Program test;
|
|
var
|
|
r: TObject;
|
|
begin
|
|
r := TObject.Create;
|
|
r.Free;
|
|
end.
|