summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex89.pp
blob: 61dc0b84189eb919577bbb45970175996c16bd8b (plain)
1
2
3
4
5
6
7
8
9
10
Program Example89;

{ Program to demonstrate the FreeMem function. }

Var P : Pointer;

begin
  GetMem(P,10000);
  FreeMem(P);
end.