program ex7; { Program to demonstrate the TObject.Free call } Uses Objects; Var O : PObject; begin // Allocate memory for object. O:=New(PObject,Init); // Free memory of object. O^.free; end.