home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
CAJSCRPT.ZIP
/
ifpasscript
/
demo_del
/
ctest2.ifs
< prev
next >
Wrap
Text File
|
2001-03-20
|
256b
|
23 lines
Program IFSTest;
type
T = class
procedure p;
function newt: T;
end;
procedure t.p;
begin
writeln('p');
end;
function t.Newt: t;
begin
Result := t.Create;
end;
var
a: t;
Begin
a:= t.create;
a.newt.p;
a.free;
End.