summaryrefslogtreecommitdiff
path: root/fpcdocs/objectex/ex8.pp
blob: 83a4b78b0fdaa62e8285a0a7bd361bd61480f9b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.