home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
CAJSCRPT.ZIP
/
ifpasscript
/
demo_del
/
arraytest.ifs
next >
Wrap
Text File
|
2001-05-24
|
252b
|
14 lines
Program IFSTest;
procedure test(s: array of const);
var
i: Integer;
begin
for i := 0 to GetarrayLength(s)-1 do
begin
writeln('test: '+GetType(s[i]));
end;
end;
Begin
test([1, 'hello', 1.0, true, TObject.Create, @test]);
End.