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