home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
source
/
docs
/
objectex
/
ex8.pp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-01-01
|
283 b
|
16 lines
program ex8;
{ Program to demonstrate the TObject.Done call }
Uses Objects;
Var O : PObject;
begin
Writeln ('Memavail : ',Memavail);
// Allocate memory for object.
O:=New(PObject,Init);
Writeln ('Memavail : ',Memavail);
O^.Done;
Writeln ('Memavail : ',Memavail);
end.