home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 December
/
Chip_2001-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
CAJSCRTP.ZIP
/
demo_kylix
/
arraytest.ifs
next >
Wrap
Text File
|
2001-03-28
|
260b
|
16 lines
Program IFSTest;
type
TConstantArray = array of const;
procedure test(s: TConstantArray);
var
i: Integer;
begin
for i := 0 to GetarrayLength(s)-1 do
begin
writeln('test: '+GetType(s[i]));
end;
end;
Begin
test([1, 'hello']);
End.